Interface ServiceValueRegistry<T>
-
- All Known Implementing Classes:
ServiceValueExecutorRegistry
public interface ServiceValueRegistry<T>A registry of service values.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServiceValueCaptor<T>add(org.jboss.msc.service.ServiceName name)Adds a service to this registry.ServiceValueCaptor<T>remove(org.jboss.msc.service.ServiceName name)Removes a service from this registry
-
-
-
Method Detail
-
add
ServiceValueCaptor<T> add(org.jboss.msc.service.ServiceName name)
Adds a service to this registry.- Parameters:
name- a service name- Returns:
- a mechanism for capturing the value of the service
-
remove
ServiceValueCaptor<T> remove(org.jboss.msc.service.ServiceName name)
Removes a service from this registry- Parameters:
name- a service name
-
-