Interface ConnIdOperationsListener

All Known Subinterfaces:
RunningLightweightTask, RunningTask, Task
All Known Implementing Classes:
NullTaskImpl

public interface ConnIdOperationsListener
Obtains information about ConnId operations executed.
  • Method Details

    • onConnIdOperationStart

      default void onConnIdOperationStart(@NotNull @NotNull ConnIdOperation operation)
      Called when an operation starts.
    • onConnIdOperationEnd

      default void onConnIdOperationEnd(@NotNull @NotNull ConnIdOperation operation)
      Called when an operation ends (successfully or not).
    • onConnIdOperationSuspend

      default void onConnIdOperationSuspend(@NotNull @NotNull ConnIdOperation operation)
      Called when an operation is suspended, i.e. the control goes to the client code. For example, when a object is being passed to the handler during iterative search.
    • onConnIdOperationResume

      default void onConnIdOperationResume(@NotNull @NotNull ConnIdOperation operation)
      Called when an operation is resumed, i.e. the control goes back to the operation. For example, when a object handling is finished during iterative search and the search continues.