Protocol::HTTP SourceProtocolHTTPBodyWrapper

class Wrapper

Wrapping body instance. Typically you'd override #read.

Definitions

attr :body

The wrapped body.

def finish

Buffer any remaining body.

Implementation

def finish
	@body.finish
end

def read

Read the next available chunk.

Implementation

def read
	@body.read
end