Uses of Interface
org.jboss.msc.service.ServiceController
-
Packages that use ServiceController Package Description org.jboss.msc.service The service container implementation itself. -
-
Uses of ServiceController in org.jboss.msc.service
Classes in org.jboss.msc.service that implement ServiceController Modifier and Type Class Description class
DelegatingServiceController<S>
A service controller which delegates to another service controller.Methods in org.jboss.msc.service that return ServiceController Modifier and Type Method Description ServiceController<?>
LifecycleContext. getController()
Get the associated service controller.protected ServiceController<S>
DelegatingServiceController. getDelegate()
Get the ServiceController delegate.ServiceController<?>
DelegatingServiceController. getParent()
Get this service's parent service, ornull
if there is none.ServiceController<?>
ServiceController. getParent()
Get this service's parent service, ornull
if there is none.ServiceController<?>
DelegatingServiceContainer. getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
DelegatingServiceRegistry. getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
ServiceRegistry. getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
DelegatingServiceContainer. getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.ServiceController<?>
DelegatingServiceRegistry. getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.ServiceController<?>
ServiceRegistry. getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.ServiceController<T>
DelegatingServiceBuilder. install()
Installs configured service into the container.ServiceController<T>
ServiceBuilder. install()
Installs configured service into the container.Methods in org.jboss.msc.service with parameters of type ServiceController Modifier and Type Method Description void
StabilityMonitor. addController(ServiceController<?> controller)
Deprecated.Register controller with this monitor.void
LifecycleListener. handleEvent(ServiceController<?> controller, LifecycleEvent event)
The service has entered new statevoid
StabilityMonitor. removeController(ServiceController<?> controller)
Deprecated.Unregister controller with this monitor.Method parameters in org.jboss.msc.service with type arguments of type ServiceController Modifier and Type Method Description boolean
DelegatingServiceContainer. awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)
Causes the current thread to wait until the container is stable.void
DelegatingServiceContainer. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)
Causes the current thread to wait until the container is stable.boolean
ServiceContainer. awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)
Causes the current thread to wait until the container is stable.void
ServiceContainer. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)
Causes the current thread to wait until the container is stable.boolean
StabilityMonitor. awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problems)
Deprecated.Causes the current thread to wait until the monitor is stable.boolean
StabilityMonitor. awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problems, StabilityStatistics statistics)
Deprecated.Causes the current thread to wait until the monitor is stable.void
StabilityMonitor. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problems)
Deprecated.Causes the current thread to wait until the monitor is stable.void
StabilityMonitor. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problems, StabilityStatistics statistics)
Deprecated.Causes the current thread to wait until the monitor is stable.Constructors in org.jboss.msc.service with parameters of type ServiceController Constructor Description DelegatingServiceController(ServiceController<S> delegate)
Construct a new instance.
-