Package org.jboss.msc.service
Class DelegatingServiceContainer
- java.lang.Object
-
- org.jboss.msc.service.DelegatingServiceContainer
-
- All Implemented Interfaces:
ServiceContainer
,ServiceRegistry
,ServiceTarget
public class DelegatingServiceContainer extends Object implements ServiceContainer
A delegating container for things which depend on a service container rather than a specific target or registry instance.- Author:
- David M. Lloyd, Richard Opalka
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jboss.msc.service.ServiceContainer
ServiceContainer.Factory, ServiceContainer.TerminateListener
-
-
Constructor Summary
Constructors Constructor Description DelegatingServiceContainer(ServiceTarget serviceTargetDelegate, ServiceRegistry serviceRegistryDelegate)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ServiceContainer
addDependency(ServiceName dependency)
Deprecated.ServiceContainer
addListener(LifecycleListener listener)
Add a service lifecycle listener that will be added to this service.ServiceTarget
addMonitor(StabilityMonitor monitor)
Deprecated.ServiceBuilder<?>
addService()
Get a builder which can be used to add a service to this target.ServiceBuilder<?>
addService(ServiceName name)
Deprecated.<T> ServiceBuilder<T>
addService(ServiceName name, Service<T> service)
Deprecated.void
addTerminateListener(ServiceContainer.TerminateListener listener)
Add a terminate listener to this container.void
awaitStability()
Causes the current thread to wait until the container is stable.boolean
awaitStability(long timeout, TimeUnit unit)
Causes the current thread to wait until the container is stable.boolean
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
awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem)
Causes the current thread to wait until the container is stable.void
awaitTermination()
Causes the current thread to wait until the container is shutdown.void
awaitTermination(long timeout, TimeUnit unit)
Causes the current thread to wait until the container is shutdown.void
dumpServices()
Dump a complete list of services toSystem.out
.void
dumpServices(PrintStream stream)
Dump a complete list of services to the given stream.String
getName()
Get the name of this service container.ServiceController<?>
getRequiredService(ServiceName serviceName)
Get a service, throwing an exception if it is not found.ServiceController<?>
getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.List<ServiceName>
getServiceNames()
Get a list of service names installed in this registry.protected ServiceRegistry
getServiceRegistryDelegate()
Get the ServiceRegistry delegate.protected ServiceTarget
getServiceTargetDelegate()
Get the ServiceTarget delegate.boolean
isShutdown()
Whether container have been shut down.boolean
isShutdownComplete()
Determine whether the container is completely shut down.ServiceContainer
removeListener(LifecycleListener listener)
Remove a lifecycle listener from this target, if it exists.ServiceTarget
removeMonitor(StabilityMonitor monitor)
Deprecated.void
shutdown()
Stop all services within this container.ServiceTarget
subTarget()
Create a sub-target using this as the parent target.
-
-
-
Constructor Detail
-
DelegatingServiceContainer
public DelegatingServiceContainer(ServiceTarget serviceTargetDelegate, ServiceRegistry serviceRegistryDelegate)
Construct a new instance.- Parameters:
serviceTargetDelegate
- the delegate to forward service target requests toserviceRegistryDelegate
- the delegate to forward registry requests to
-
-
Method Detail
-
getServiceTargetDelegate
protected ServiceTarget getServiceTargetDelegate()
Get the ServiceTarget delegate.- Returns:
- ServiceTarget delegate
-
getServiceRegistryDelegate
protected ServiceRegistry getServiceRegistryDelegate()
Get the ServiceRegistry delegate.- Returns:
- ServiceRegistry delegate
-
addService
public ServiceBuilder<?> addService()
Get a builder which can be used to add a service to this target.- Specified by:
addService
in interfaceServiceTarget
- Returns:
- new service configurator
-
addListener
public ServiceContainer addListener(LifecycleListener listener)
Add a service lifecycle listener that will be added to this service.- Specified by:
addListener
in interfaceServiceTarget
- Parameters:
listener
- the lifecycle listener to add to the service- Returns:
- this target
-
removeListener
public ServiceContainer removeListener(LifecycleListener listener)
Remove a lifecycle listener from this target, if it exists.- Specified by:
removeListener
in interfaceServiceTarget
- Parameters:
listener
- the lifecycle listener to remove- Returns:
- this target
-
subTarget
public ServiceTarget subTarget()
Create a sub-target using this as the parent target.- Specified by:
subTarget
in interfaceServiceTarget
- Returns:
- the new service target
-
getRequiredService
public ServiceController<?> getRequiredService(ServiceName serviceName) throws ServiceNotFoundException
Get a service, throwing an exception if it is not found.- Specified by:
getRequiredService
in interfaceServiceRegistry
- Parameters:
serviceName
- the service name- Returns:
- the service controller for the corresponding service
- Throws:
ServiceNotFoundException
- if the service is not present in the registry
-
getService
public ServiceController<?> getService(ServiceName serviceName)
Get a service, returningnull
if it is not found.- Specified by:
getService
in interfaceServiceRegistry
- Parameters:
serviceName
- the service name- Returns:
- the service controller for the corresponding service, or
null
if it is not found
-
getServiceNames
public List<ServiceName> getServiceNames()
Get a list of service names installed in this registry.- Specified by:
getServiceNames
in interfaceServiceRegistry
- Returns:
- the list
-
getName
public String getName()
Get the name of this service container.- Specified by:
getName
in interfaceServiceContainer
- Returns:
- the container name
-
shutdown
public void shutdown()
Stop all services within this container.- Specified by:
shutdown
in interfaceServiceContainer
-
isShutdown
public boolean isShutdown()
Whether container have been shut down.- Specified by:
isShutdown
in interfaceServiceContainer
- Returns:
true
if container is shutting down
-
isShutdownComplete
public boolean isShutdownComplete()
Determine whether the container is completely shut down.- Specified by:
isShutdownComplete
in interfaceServiceContainer
- Returns:
true
if shutdown is complete
-
dumpServices
public void dumpServices()
Dump a complete list of services toSystem.out
.- Specified by:
dumpServices
in interfaceServiceContainer
-
dumpServices
public void dumpServices(PrintStream stream)
Dump a complete list of services to the given stream.- Specified by:
dumpServices
in interfaceServiceContainer
- Parameters:
stream
- the stream to which the service list should be written
-
addTerminateListener
public void addTerminateListener(ServiceContainer.TerminateListener listener)
Add a terminate listener to this container. The addedlistener
will be invoked when this container shutdown process is complete.- Specified by:
addTerminateListener
in interfaceServiceContainer
- Parameters:
listener
- the listener
-
awaitTermination
public void awaitTermination()
Causes the current thread to wait until the container is shutdown.- Specified by:
awaitTermination
in interfaceServiceContainer
-
awaitTermination
public void awaitTermination(long timeout, TimeUnit unit) throws InterruptedException
Causes the current thread to wait until the container is shutdown.- Specified by:
awaitTermination
in interfaceServiceContainer
- Parameters:
timeout
- the maximum time to waitunit
- the time unit of thetimeout
argument- Throws:
InterruptedException
- if the current thread is interrupted while waiting
-
awaitStability
public void awaitStability() throws InterruptedException
Causes the current thread to wait until the container is stable.- Specified by:
awaitStability
in interfaceServiceContainer
- Throws:
InterruptedException
- if the current thread is interrupted while waiting
-
awaitStability
public boolean awaitStability(long timeout, TimeUnit unit) throws InterruptedException
Causes the current thread to wait until the container is stable.- Specified by:
awaitStability
in interfaceServiceContainer
- Parameters:
timeout
- the maximum time to waitunit
- the time unit of thetimeout
argument- Returns:
- true if this container achieved stability, false if the timeout elapsed before stability
- Throws:
InterruptedException
- if the current thread is interrupted while waiting
-
awaitStability
public void awaitStability(Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem) throws InterruptedException
Causes the current thread to wait until the container is stable.- Specified by:
awaitStability
in interfaceServiceContainer
- Parameters:
failed
- a set into which failed services should be copiedproblem
- a set into which problem services should be copied- Throws:
InterruptedException
- if the current thread is interrupted while waiting
-
awaitStability
public boolean awaitStability(long timeout, TimeUnit unit, Set<? super ServiceController<?>> failed, Set<? super ServiceController<?>> problem) throws InterruptedException
Causes the current thread to wait until the container is stable.- Specified by:
awaitStability
in interfaceServiceContainer
- Parameters:
timeout
- the maximum time to waitunit
- the time unit of thetimeout
argumentfailed
- a set into which failed services should be copiedproblem
- a set into which problem services should be copied- Returns:
- true if this container achieved stability, false if the timeout elapsed before stability
- Throws:
InterruptedException
- if the current thread is interrupted while waiting
-
addService
@Deprecated public ServiceBuilder<?> addService(ServiceName name)
Deprecated.Get a builder which can be used to add a service to this target.- Specified by:
addService
in interfaceServiceTarget
- Parameters:
name
- the service name- Returns:
- new service configurator
-
addService
@Deprecated public <T> ServiceBuilder<T> addService(ServiceName name, Service<T> service)
Deprecated.Get a builder which can be used to add a service to this target.- Specified by:
addService
in interfaceServiceTarget
- Parameters:
name
- the service nameservice
- the service- Returns:
- the builder for the service
-
addMonitor
@Deprecated public ServiceTarget addMonitor(StabilityMonitor monitor)
Deprecated.Add a stability monitor that will be added to all the ServiceBuilders installed in this target.- Specified by:
addMonitor
in interfaceServiceTarget
- Parameters:
monitor
- the monitor to add to the target- Returns:
- this target
-
removeMonitor
@Deprecated public ServiceTarget removeMonitor(StabilityMonitor monitor)
Deprecated.Remove a monitor from this target, if it exists.- Specified by:
removeMonitor
in interfaceServiceTarget
- Parameters:
monitor
- the monitor to remove- Returns:
- this target
-
addDependency
@Deprecated public ServiceContainer addDependency(ServiceName dependency)
Deprecated.Add a dependency that will be added to the all ServiceBuilders installed in this target.- Specified by:
addDependency
in interfaceServiceTarget
- Parameters:
dependency
- the dependency to add to the target- Returns:
- this target
-
-