Package com.tangosol.application
Class ContainerHelper
java.lang.Object
com.tangosol.application.ContainerHelper
Helper methods for Container aware logic.
- Since:
- Coherence 12.2.1
- Author:
- gg 2005.10.24
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static class
Context aware delegating listener.protected static class
Context aware delegating synchronous priming listener.protected static class
Context aware delegating synchronous listener. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic MapListener
getContextAwareListener
(Service service, MapListener listener) Wrap the specified MapListener in such a way that the returned listener would dispatch events using the caller's context rather than context associated with the specified Service.static ContainerContext
getSwitchCurrentContext
(Service service) Given the ContainerContext associated with the specified Service and the current thread's context, return a ContainerContext instance that should be used by the Service thread to perform actions on behalf of the current thread's context.static ContainerContext
getSwitchServiceContext
(Service service) Given the ContainerContext associated with the specified Service and the current thread's context, return a ContainerContext instance that should be used by the current thread to perform actions on behalf of the Service thread's context.static void
initializeThreadContext
(Service service) Initialize the thread context for the given Service.
-
Constructor Details
-
ContainerHelper
public ContainerHelper()
-
-
Method Details
-
initializeThreadContext
Initialize the thread context for the given Service.- Parameters:
service
- a Service instance
-
getSwitchCurrentContext
Given the ContainerContext associated with the specified Service and the current thread's context, return a ContainerContext instance that should be used by the Service thread to perform actions on behalf of the current thread's context.- Parameters:
service
- a Service instance- Returns:
- a ContainerContext to use for invocations later or null if the invocation should be done using the service thread context
-
getSwitchServiceContext
Given the ContainerContext associated with the specified Service and the current thread's context, return a ContainerContext instance that should be used by the current thread to perform actions on behalf of the Service thread's context.- Parameters:
service
- a Service instance- Returns:
- a ContainerContext to use for invocations later or null if the invocation should be done using the current thread context
-
getContextAwareListener
Wrap the specified MapListener in such a way that the returned listener would dispatch events using the caller's context rather than context associated with the specified Service.- Parameters:
service
- a Service instancelistener
- the listener to wrap- Returns:
- the corresponding context aware listener
-