module XRay::Streamer

The interface used by the X-Ray recoder to get eligible subsegments to be streamed out from a given segment.

Public Instance Methods

eligible?(segment:) click to toggle source
# File lib/aws-xray-sdk/streaming/streamer.rb, line 5
def eligible?(segment:)
  raise 'Not implemented'
end
stream_threshold=(v) click to toggle source
# File lib/aws-xray-sdk/streaming/streamer.rb, line 13
def stream_threshold=(v)
  raise 'Not implemented'
end
subsegments_to_stream(segment:, emitter:, force: false) click to toggle source
# File lib/aws-xray-sdk/streaming/streamer.rb, line 9
def subsegments_to_stream(segment:, emitter:, force: false)
  raise 'Not implemented'
end