|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Service
A life-cycled service that supports cache functionality.
Implementation of this interface must be thread-safe.
Since CacheManager
s can be closed and initialized again, Service
implementations should support
multiple start/stop cycles. Failure to do so will limit the init/close cycles at the CacheManager
level.
Method Summary | |
---|---|
void |
start(ServiceProvider<Service> serviceProvider)
Start this service using the provided configuration and ServiceProvider . |
void |
stop()
Stops this service. |
Method Detail |
---|
void start(ServiceProvider<Service> serviceProvider)
ServiceProvider
.
The service provider allows a service to retrieve and use other services.
A Service
retrieved at this stage may not yet be started. The recommended usage pattern therefore, is to keep a
reference to the dependent Service
but use it only when specific methods are invoked on subtypes.
serviceProvider
- the service providervoid stop()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |