module XRay::Context
The interface of context management for the X-Ray recorder.
Public Instance Methods
clear!()
click to toggle source
# File lib/aws-xray-sdk/context/context.rb, line 13 def clear! raise 'Not implemented' end
current_entity()
click to toggle source
# File lib/aws-xray-sdk/context/context.rb, line 9 def current_entity raise 'Not implemented' end
handle_context_missing()
click to toggle source
# File lib/aws-xray-sdk/context/context.rb, line 22 def handle_context_missing raise 'Not implemented' end
inject_context(entity, target_ctx: nil)
click to toggle source
Put current active entity to the new context storage.
# File lib/aws-xray-sdk/context/context.rb, line 18 def inject_context(entity, target_ctx: nil) raise 'Not implemented' end
store_entity(entity:)
click to toggle source
@param [Entity] entity The entity to be stored in the context.
# File lib/aws-xray-sdk/context/context.rb, line 5 def store_entity(entity:) raise 'Not implemented' end