Uses of Class
com.google.common.util.concurrent.Service.State
-
Packages that use Service.State Package Description com.google.common.util.concurrent Concurrency utilities. -
-
Uses of Service.State in com.google.common.util.concurrent
Fields in com.google.common.util.concurrent declared as Service.State Modifier and Type Field Description (package private) Service.StateAbstractService.StateSnapshot. stateThe internal state, which equals external state unless shutdownWhenStartupFinishes is true.Fields in com.google.common.util.concurrent with type parameters of type Service.State Modifier and Type Field Description (package private) SetMultimap<Service.State,Service>ServiceManager.ServiceManagerState. servicesByState(package private) Multiset<Service.State>ServiceManager.ServiceManagerState. statesMethods in com.google.common.util.concurrent that return Service.State Modifier and Type Method Description (package private) Service.StateAbstractService.StateSnapshot. externalState()Service.StateAbstractExecutionThreadService. state()Service.StateAbstractIdleService. state()Service.StateAbstractScheduledService. state()Service.StateAbstractService. state()Service.StateService. state()Returns the lifecycle state of the service.static Service.StateService.State. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Service.State[]Service.State. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.google.common.util.concurrent that return types with arguments of type Service.State Modifier and Type Method Description (package private) ImmutableSetMultimap<Service.State,Service>ServiceManager.ServiceManagerState. servicesByState()ImmutableSetMultimap<Service.State,Service>ServiceManager. servicesByState()Provides a snapshot of the current state of all the services under management.ImmutableMultimap<Service.State,Service>ServiceManagerBridge. servicesByState()Methods in com.google.common.util.concurrent with parameters of type Service.State Modifier and Type Method Description private voidAbstractService. checkCurrentState(Service.State expected)Checks that the current state is equal to the expected state.private voidAbstractService. enqueueFailedEvent(Service.State from, java.lang.Throwable cause)private voidAbstractService. enqueueStoppingEvent(Service.State from)private voidAbstractService. enqueueTerminatedEvent(Service.State from)voidService.Listener. failed(Service.State from, java.lang.Throwable failure)Called when the service transitions to the FAILED state.voidServiceManager.ServiceListener. failed(Service.State from, java.lang.Throwable failure)voidService.Listener. stopping(Service.State from)Called when the service transitions to the STOPPING state.voidServiceManager.ServiceListener. stopping(Service.State from)private static ListenerCallQueue.Event<Service.Listener>AbstractService. stoppingEvent(Service.State from)voidService.Listener. terminated(Service.State from)Called when the service transitions to the TERMINATED state.voidServiceManager.ServiceListener. terminated(Service.State from)private static ListenerCallQueue.Event<Service.Listener>AbstractService. terminatedEvent(Service.State from)(package private) voidServiceManager.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.State Constructor Description StateSnapshot(Service.State internalState)StateSnapshot(Service.State internalState, boolean shutdownWhenStartupFinishes, java.lang.Throwable failure)
-