|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Beta public interface Service
An object with an operational state, plus asynchronous start()
and
stop()
lifecycle methods to transition between states.
Example services include webservers, RPC servers and timers.
The normal lifecycle of a service is:
Service.State.NEW
->Service.State.STARTING
->Service.State.RUNNING
->Service.State.STOPPING
->Service.State.TERMINATED
The valid state transitions of a Service are:
Service.State.NEW
-> Service.State.STARTING
: This occurs when
start() is called the first time and is the only valid state transition
from the NEW state.Service.State.NEW
-> Service.State.TERMINATED
: This occurs when
stop() is called from the NEW state.Service.State.STARTING
-> Service.State.RUNNING
: This occurs when
a service has successfully startedService.State.STARTING
-> Service.State.FAILED
: This occurs when a
service experiences an unrecoverable error while starting upService.State.STARTING
-> Service.State.STOPPING
: This occurs when
stop() is called while a service is starting up.Service.State.RUNNING
-> Service.State.STOPPING
: This occurs when
stop() is called on a running service.Service.State.RUNNING
-> Service.State.FAILED
: This occurs when an
unrecoverable error occurs while a service is running.Service.State.STOPPING
-> Service.State.FAILED
: This occurs when an
unrecoverable error occurs while a service is stopping.Service.State.STOPPING
-> Service.State.TERMINATED
: This occurs
when the service successfully stops.N.B. The Service.State.FAILED
and Service.State.TERMINATED
states are
terminal states, once a service enters either of these states it cannot ever
leave them.
Implementors of this interface are strongly encouraged to extend one of the abstract classes in this package which implement this interface and make the threading and state management easier.
com.google.common.base.Service
)Nested Class Summary | |
---|---|
static class |
Service.State
The lifecycle states of a service. |
Method Summary | |
---|---|
boolean |
isRunning()
Returns true if this service is running. |
ListenableFuture<Service.State> |
start()
If the service state is Service.State.NEW , this initiates service startup
and returns immediately. |
Service.State |
startAndWait()
Initiates service startup (if necessary), returning once the service has finished starting. |
Service.State |
state()
Returns the lifecycle state of the service. |
ListenableFuture<Service.State> |
stop()
If the service is starting or running, this initiates service shutdown and returns immediately. |
Service.State |
stopAndWait()
Initiates service shutdown (if necessary), returning once the service has finished stopping. |
Method Detail |
---|
ListenableFuture<Service.State> start()
Service.State.NEW
, this initiates service startup
and returns immediately. If the service has already been started, this
method returns immediately without taking action. A stopped service may not
be restarted.
Future.get()
will block
until the service has finished starting, and returns one of Service.State.RUNNING
, Service.State.STOPPING
or Service.State.TERMINATED
. If
the service fails to start, Future.get()
will throw an
ExecutionException
, and the service's state will be Service.State.FAILED
. If it has already finished starting, Future.get()
returns immediately. Cancelling this future has
no effect on the service.Service.State startAndWait()
start().get()
, this method throws
no checked exceptions, and it cannot be interrupted.
UncheckedExecutionException
- if startup failedboolean isRunning()
true
if this service is running.
Service.State state()
ListenableFuture<Service.State> stop()
Future.get()
will block
until the service has finished shutting down, and either returns
Service.State.TERMINATED
or throws an ExecutionException
. If
it has already finished stopping, Future.get()
returns
immediately. Cancelling this future has no effect on the service.Service.State stopAndWait()
Service.State.STARTING
, startup will be
cancelled. If this is Service.State.NEW
, it is terminated
without having been started nor stopped. Unlike calling stop().get()
, this method throws no checked exceptions.
UncheckedExecutionException
- if shutdown failed
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |