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.



162
163
164
165
# File 'lib/immunio/plugins/http_tracker.rb', line 162

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

Instance Method Details

#eachObject



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

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



167
168
169
170
171
172
173
# File 'lib/immunio/plugins/http_tracker.rb', line 167

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

#readObject



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

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