Interface Startable

All Known Implementing Classes:
PeriodicService

public interface Startable
Callback that gets invoked when the Guice world starts running.

It's the responsibility of the code that creates an injector to invoke them.

Author:
Kohsuke Kawaguchi
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called once right after the Guice world is started, to provide an opportunity to start various objects.
  • Method Details

    • start

      void start() throws Exception
      Called once right after the Guice world is started, to provide an opportunity to start various objects.

      Exceptions thrown will terminate the system.

      Throws:
      Exception