Class: Immunio::InputWrapper

Inherits:
SimpleDelegator
  • Object
show all
Defined in:
lib/immunio/plugins/http_tracker.rb

Instance Method Summary collapse

Constructor Details

#initialize(input) ⇒ InputWrapper

Returns a new instance of InputWrapper.



165
166
167
168
# File 'lib/immunio/plugins/http_tracker.rb', line 165

def initialize(input)
  super input
  @input = input
end

Instance Method Details

#eachObject



186
187
188
189
190
191
192
193
194
195
# File 'lib/immunio/plugins/http_tracker.rb', line 186

def each
  Request.time "plugin", "#{Module.nesting[0]}::#{__method__}" do
    @input.each do |chunk|
      report_chunk chunk
      Request.pause "plugin", "#{Module.nesting[0]}::#{__method__}" do
        yield chunk
      end
    end
  end
end

#getsObject



170
171
172
173
174
175
176
# File 'lib/immunio/plugins/http_tracker.rb', line 170

def gets(*)
  v = super
  Request.time "plugin", "#{Module.nesting[0]}::#{__method__}" do
    report_chunk v
  end
  v
end

#readObject



178
179
180
181
182
183
184
# File 'lib/immunio/plugins/http_tracker.rb', line 178

def read(*)
  v = super
  Request.time "plugin", "#{Module.nesting[0]}::#{__method__}" do
    report_chunk v
  end
  v
end