Class: Roda::RodaPlugins::Chunked::Body
- Inherits:
-
Object
- Object
- Roda::RodaPlugins::Chunked::Body
- Defined in:
- lib/roda/plugins/chunked.rb
Overview
Rack response body instance for chunked responses using Transfer-Encoding: chunked.
Instance Method Summary collapse
-
#each ⇒ Object
For each response chunk yielded by the scope, yield it it to the caller in chunked format, starting with the size of the request in ASCII hex format, then the chunk.
-
#initialize(scope) ⇒ Body
constructor
Save the scope of the current request handling.
Constructor Details
#initialize(scope) ⇒ Body
Save the scope of the current request handling.
171 172 173 |
# File 'lib/roda/plugins/chunked.rb', line 171 def initialize(scope) @scope = scope end |
Instance Method Details
#each ⇒ Object
For each response chunk yielded by the scope, yield it it to the caller in chunked format, starting with the size of the request in ASCII hex format, then the chunk. After all chunks have been yielded, yield a 0 sized chunk to finish the response.
180 181 182 183 184 185 186 187 188 189 |
# File 'lib/roda/plugins/chunked.rb', line 180 def each @scope.each_chunk do |chunk| next if !chunk || chunk.empty? yield("%x\r\n" % chunk.bytesize) yield(chunk) yield("\r\n") end ensure yield("0\r\n\r\n") end |