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
Methods in com.google.common.util.concurrent that return Service.State Modifier and Type Method Description Service.State
AbstractExecutionThreadService. state()
Service.State
AbstractIdleService. state()
Service.State
AbstractScheduledService. state()
Service.State
AbstractService. state()
Service.State
Service. state()
Returns the lifecycle state of the service.static Service.State
Service.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 ImmutableSetMultimap<Service.State,Service>
ServiceManager. servicesByState()
Provides a snapshot of the current state of all the services under management.Methods in com.google.common.util.concurrent with parameters of type Service.State Modifier and Type Method Description void
Service.Listener. failed(Service.State from, java.lang.Throwable failure)
Called when the service transitions to the FAILED state.void
Service.Listener. stopping(Service.State from)
Called when the service transitions to the STOPPING state.void
Service.Listener. terminated(Service.State from)
Called when the service transitions to the TERMINATED state.
-