class Splunk::ExportStream

Marks streams returned by the export endpoint for special handling.

ResultsReader is supposed to handle streams from export differently from those from other endpoints, so we use this delegator to mark them.

Public Class Methods

new(obj) click to toggle source
Calls superclass method
# File lib/splunk-sdk-ruby/collection/jobs.rb, line 131
def initialize(obj)
  super                  # pass obj to Delegator constructor, required
  @delegate = obj # store obj for future use
end

Public Instance Methods

__getobj__() click to toggle source
# File lib/splunk-sdk-ruby/collection/jobs.rb, line 136
def __getobj__()
  @delegate
end
__setobj__(obj) click to toggle source
# File lib/splunk-sdk-ruby/collection/jobs.rb, line 140
def __setobj__(obj)
  @delegate = obj
end