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.



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

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

Instance Method Details

#eachObject



193
194
195
196
197
198
199
200
201
202
# File 'lib/immunio/plugins/http_tracker.rb', line 193

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



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

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

#readObject



185
186
187
188
189
190
191
# File 'lib/immunio/plugins/http_tracker.rb', line 185

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