Interface InitListener


public interface InitListener
Listener interface to hook into the initialization process for HttpManagerBuilder
Author:
brad
  • Method Details

    • beforeInit

      void beforeInit(HttpManagerBuilder b)
      Called just before init on HttpManagerBuilder
      Parameters:
      b -
    • afterInit

      void afterInit(HttpManagerBuilder b)
      Called just after init, and before building the HttpManager instance
      Parameters:
      b -
    • afterBuild

      void afterBuild(HttpManagerBuilder b, HttpManager m)
      Called immediately after building the http manager
      Parameters:
      b -
      m -
    • beforeProtocolBuild

      void beforeProtocolBuild(HttpManagerBuilder b)
      Called immediately before building the protocol stack, ie the Http11Protocol etc Note that building the protocol stack is done before building the HttpManager
      Parameters:
      aThis -