Package org.wildfly.service.capture
Interface ValueExecutorRegistry<K,V>
-
- Type Parameters:
K- the registry key typeV- the registry value type
- All Superinterfaces:
FunctionExecutorRegistry<K,V>,ValueRegistry<K,V>
public interface ValueExecutorRegistry<K,V> extends ValueRegistry<K,V>, FunctionExecutorRegistry<K,V>
A registry of captured values.- Author:
- Paul Ferraro
-
-
Method Summary
Static Methods Modifier and Type Method Description static <K,V>
ValueExecutorRegistry<K,V>newInstance()Creates a new registry of values.-
Methods inherited from interface org.wildfly.service.capture.FunctionExecutorRegistry
getExecutor
-
Methods inherited from interface org.wildfly.service.capture.ValueRegistry
add, remove
-
-
-
-
Method Detail
-
newInstance
static <K,V> ValueExecutorRegistry<K,V> newInstance()
Creates a new registry of values.- Type Parameters:
K- the registry key typeV- the registry value type- Returns:
- a new registry instance
-
-