Uses of Class
org.jboss.msc.service.ServiceController.Transition
-
Packages that use ServiceController.Transition Package Description org.jboss.msc.service The service container implementation itself. -
-
Uses of ServiceController.Transition in org.jboss.msc.service
Fields in org.jboss.msc.service declared as ServiceController.Transition Modifier and Type Field Description private ServiceController.Transition
ServiceControllerImpl.ListenerTask. transition
Methods in org.jboss.msc.service that return ServiceController.Transition Modifier and Type Method Description private ServiceController.Transition
ServiceControllerImpl. getTransition()
Identify the transition to take.static ServiceController.Transition
ServiceController.Transition. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ServiceController.Transition[]
ServiceController.Transition. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.jboss.msc.service with parameters of type ServiceController.Transition Modifier and Type Method Description private void
ServiceControllerImpl. getListenerTasks(ServiceController.Transition transition, java.util.ArrayList<java.lang.Runnable> tasks)
boolean
ServiceController.Transition. in(ServiceController.Transition... transitions)
Determine if this transition is one of the given transitions.private void
ServiceControllerImpl. invokeListener(ServiceListener<? super S> listener, ServiceControllerImpl.ListenerNotification notification, ServiceController.Transition transition)
Invokes the listener, performing the notification specified.void
AbstractServiceListener. transition(ServiceController<? extends S> controller, ServiceController.Transition transition)
The service has transitioned to a new sub-state.void
MultipleRemoveListener. transition(ServiceController<? extends java.lang.Object> controller, ServiceController.Transition transition)
void
ServiceListener. transition(ServiceController<? extends S> controller, ServiceController.Transition transition)
Deprecated.The service has transitioned to a new sub-state.void
TimingServiceListener. transition(ServiceController<? extends java.lang.Object> controller, ServiceController.Transition transition)
Constructors in org.jboss.msc.service with parameters of type ServiceController.Transition Constructor Description ListenerTask(ServiceListener<? super S> listener, ServiceController.Transition transition)
-