Package ratpack.core.server
Interface Stopper
-
public interface Stopper
The mechanism for stopping the application from within the application.An implementation of this is always available via the context registry.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
stop()
Initiates the shutdown process for the running application.
-
-
-
Method Detail
-
stop
@NonBlocking void stop()
Initiates the shutdown process for the running application.This method may return before the application is fully shut down.
-
-