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 providingSession
support. -
-
Uses of Service in ratpack.core.service
Methods in ratpack.core.service that return Service Modifier and Type Method Description static Service
Service. shutdown(String name, Action<? super StopEvent> action)
Creates a service that executes the given action as theonStop(StopEvent)
implementation.static Service
Service. 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 ServiceDependenciesSpec
ServiceDependenciesSpec. dependsOn(Predicate<? super Service> dependents, Predicate<? super Service> dependencies)
Specifies that all services that match thedependents
predicate are dependent on all services that match thedependencies
predicate. -
Uses of Service in ratpack.hikari
Classes in ratpack.hikari that implement Service Modifier and Type Class Description class
HikariService
-
Uses of Service in ratpack.session
Subinterfaces of Service in ratpack.session Modifier and Type Interface Description interface
SessionStore
A persistent store of session data.
-