class Aws::Telemetry::ContextManagerBase
Base for all ‘ContextManager` classes.
def attach(context)
-
(Object)
- token A token to be used when detaching
Parameters:
-
context
(Object
) -- The new context
def attach(context) raise NotImplementedError end
def current
-
(Context)
-
def current raise NotImplementedError end
def detach(token)
-
(Boolean)
- `True` if the calls matched, `False` otherwise
Parameters:
-
token
(Object
) -- The token provided by matching the call to attach
def detach(token) raise NotImplementedError end