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 classDelegatingServiceController<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, ornullif there is none.ServiceController<?>ServiceController. getParent()Get this service's parent service, ornullif 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, returningnullif it is not found.ServiceController<?>DelegatingServiceRegistry. getService(ServiceName serviceName)Get a service, returningnullif it is not found.ServiceController<?>ServiceRegistry. getService(ServiceName serviceName)Get a service, returningnullif 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 voidStabilityMonitor. addController(ServiceController<?> controller)Deprecated.Register controller with this monitor.voidLifecycleListener. handleEvent(ServiceController<?> controller, LifecycleEvent event)The service has entered new statevoidStabilityMonitor. 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 booleanDelegatingServiceContainer. awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)Causes the current thread to wait until the container is stable.voidDelegatingServiceContainer. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)Causes the current thread to wait until the container is stable.booleanServiceContainer. awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)Causes the current thread to wait until the container is stable.voidServiceContainer. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)Causes the current thread to wait until the container is stable.booleanStabilityMonitor. 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.booleanStabilityMonitor. 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.voidStabilityMonitor. awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problems)Deprecated.Causes the current thread to wait until the monitor is stable.voidStabilityMonitor. 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.
-