Interface CallbackHandler

All Known Implementing Classes:
CompoundCallbackHandler, IgnoreErrorCallback, LoggingCallbackHandler

public interface CallbackHandler
A callback handler handles callbacks from the installation routine.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    handle(Callback[] callbacks)
    The callback objects from the installation routine are passed to this handler.
  • Method Details

    • handle

      void handle(Callback[] callbacks)
      The callback objects from the installation routine are passed to this handler. A callback might ask for additional information required for installing or just informs the caller. The Callback interface is a marker interface, so you need to check for concrete subclasses.