Interface ThreadLifeCycleEventListener<T>

Type Parameters:
T -

public interface ThreadLifeCycleEventListener<T>
Interface for classes that need to be aware of when child-threads are created and terminated. This is primarily for LadyBug, via the IbisDebuggerAdvice class which implements this interface.
  • Method Details

    • announceChildThread

      T announceChildThread(Object owner, String correlationId)
    • cancelChildThread

      void cancelChildThread(T ref)
    • threadCreated

      <O> O threadCreated(T ref, O request)
    • threadEnded

      <O> O threadEnded(T ref, O result)
    • threadAborted

      Throwable threadAborted(T ref, Throwable t)