Uses of Enum Class
com.google.common.util.concurrent.Service.State
Packages that use Service.State
-
Uses of Service.State in com.google.common.util.concurrent
Fields in com.google.common.util.concurrent declared as Service.StateModifier and TypeFieldDescription(package private) final Service.State
AbstractService.StateSnapshot.state
The internal state, which equals external state unless shutdownWhenStartupFinishes is true.Fields in com.google.common.util.concurrent with type parameters of type Service.StateModifier and TypeFieldDescription(package private) final SetMultimap
<Service.State, Service> ServiceManager.ServiceManagerState.servicesByState
(package private) final Multiset
<Service.State> ServiceManager.ServiceManagerState.states
Methods in com.google.common.util.concurrent that return Service.StateModifier and TypeMethodDescription(package private) Service.State
AbstractService.StateSnapshot.externalState()
final Service.State
AbstractExecutionThreadService.state()
final Service.State
AbstractIdleService.state()
final Service.State
AbstractScheduledService.state()
final Service.State
AbstractService.state()
Service.state()
Returns the lifecycle state of the service.static Service.State
Returns the enum constant of this class with the specified name.static Service.State[]
Service.State.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.google.common.util.concurrent that return types with arguments of type Service.StateModifier and TypeMethodDescription(package private) ImmutableSetMultimap
<Service.State, Service> ServiceManager.ServiceManagerState.servicesByState()
ServiceManager.servicesByState()
Provides a snapshot of the current state of all the services under management.ServiceManagerBridge.servicesByState()
Methods in com.google.common.util.concurrent with parameters of type Service.StateModifier and TypeMethodDescriptionprivate void
AbstractService.checkCurrentState
(Service.State expected) Checks that the current state is equal to the expected state.private void
AbstractService.enqueueFailedEvent
(Service.State from, Throwable cause) private void
AbstractService.enqueueStoppingEvent
(Service.State from) private void
AbstractService.enqueueTerminatedEvent
(Service.State from) void
Service.Listener.failed
(Service.State from, Throwable failure) Called when the service transitions to the FAILED state.void
ServiceManager.ServiceListener.failed
(Service.State from, Throwable failure) void
Service.Listener.stopping
(Service.State from) Called when the service transitions to the STOPPING state.void
ServiceManager.ServiceListener.stopping
(Service.State from) private static ListenerCallQueue.Event
<Service.Listener> AbstractService.stoppingEvent
(Service.State from) void
Service.Listener.terminated
(Service.State from) Called when the service transitions to the TERMINATED state.void
ServiceManager.ServiceListener.terminated
(Service.State from) private static ListenerCallQueue.Event
<Service.Listener> AbstractService.terminatedEvent
(Service.State from) (package private) void
ServiceManager.ServiceManagerState.transitionService
(Service service, Service.State from, Service.State to) Updates the state with the given service transition.Constructors in com.google.common.util.concurrent with parameters of type Service.StateModifierConstructorDescription(package private)
StateSnapshot
(Service.State internalState) (package private)
StateSnapshot
(Service.State internalState, boolean shutdownWhenStartupFinishes, Throwable failure)