Uses of Interface
ratpack.core.service.Service
-
Packages that use Service Package Description ratpack.core.service Services participate in the application start/stop lifecycle.ratpack.hikari Provides integration with HikariCP library.ratpack.session Objects for providingSessionsupport. -
-
Uses of Service in ratpack.core.service
Methods in ratpack.core.service that return Service Modifier and Type Method Description static ServiceService. shutdown(String name, Action<? super StopEvent> action)Creates a service that executes the given action as theonStop(StopEvent)implementation.static ServiceService. startup(String name, Action<? super StartEvent> action)Creates a service that executes the given action as theonStart(StartEvent)implementation.Method parameters in ratpack.core.service with type arguments of type Service Modifier and Type Method Description ServiceDependenciesSpecServiceDependenciesSpec. dependsOn(Predicate<? super Service> dependents, Predicate<? super Service> dependencies)Specifies that all services that match thedependentspredicate are dependent on all services that match thedependenciespredicate. -
Uses of Service in ratpack.hikari
Classes in ratpack.hikari that implement Service Modifier and Type Class Description classHikariService -
Uses of Service in ratpack.session
Subinterfaces of Service in ratpack.session Modifier and Type Interface Description interfaceSessionStoreA persistent store of session data.
-