Package org.wildfly.service.capture
Interface FunctionExecutorRegistry<K,V>
-
- Type Parameters:
K- the registry key typeV- the registry value type
- All Known Subinterfaces:
ServiceValueExecutorRegistry<V>,ValueExecutorRegistry<K,V>
public interface FunctionExecutorRegistry<K,V>Registry ofFunctionExecutorobjects.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FunctionExecutor<V>getExecutor(K key)Returns the executor for the specified key.
-
-
-
Method Detail
-
getExecutor
FunctionExecutor<V> getExecutor(K key)
Returns the executor for the specified key.- Parameters:
key- a registry key- Returns:
- an executor, or null, if no such executor exists in the registry
-
-