class Aws::Telemetry::ContextManagerBase

Base for all ‘ContextManager` classes.

def attach(context)

Returns:
  • (Object) - token A token to be used when detaching

Parameters:
  • context (Object) -- The new context
def attach(context)
  raise NotImplementedError
end

def current

Returns:
  • (Context) -
def current
  raise NotImplementedError
end

def detach(token)

Returns:
  • (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