|
||||||||||
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 transfer into and out of this state.
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
Service.State.FAILED
, and its behavior is undefined. Such a service cannot be
started nor stopped.
Implementors of this interface are strongly encouraged to extend AbstractService
or AbstractExecutionThreadService
, which make
the threading and state management easier.
Nested Class Summary | |
---|---|
static class |
Service.State
The lifecycle states of a service. |
Method Summary | |
---|---|
boolean |
isRunning()
Returns true if this service is running . |
Future<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. |
Future<Service.State> |
stop()
If the service is Service.State.STARTING or Service.State.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 |
---|
Future<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 the returned future is unsupported and
always returns false
.Service.State startAndWait()
start().get()
, this method throws
no checked exceptions.
InterruptedRuntimeException
- if the thread was interrupted while
waiting for the service to finish starting up.
RuntimeException
- if startup failedboolean isRunning()
true
if this service is running
.
Service.State state()
Future<Service.State> stop()
Service.State.STARTING
or Service.State.RUNNING
, this
initiates service shutdown and returns immediately. If this is Service.State.NEW
, it is terminated
without having been
started nor stopped. If the service has already been stopped, this
method returns immediately without taking action.
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 is unsupported and always returns false
.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.
InterruptedRuntimeException
- if the thread was interrupted while
waiting for the service to finish shutting down.
RuntimeException
- if shutdown failed
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |