class Async::HTTP::Body::Hijack
A body which is designed for hijacked server responses - a response which uses a block to read and write the request and response bodies respectively.
def self.response(request, status, headers, &block)
@parameter headers [Hash] The response headers.
@parameter status [Integer] The HTTP status code.
@parameter request [Protocol::HTTP::Request] The request to hijack.
Create a response with this hijacked body.
def self.response(request, status, headers, &block) ::Protocol::HTTP::Response[status, headers, self.wrap(request, &block)] end
def self.wrap(request = nil, &block)
@parameter request [Protocol::HTTP::Request | Nil] The request to hijack.
Wrap a request body with a hijacked body.
def self.wrap(request = nil, &block) self.new(block, request&.body) end
def call(stream)
Invoke the block with the given stream for bidirectional communication.
def call(stream) @block.call(stream) end
def empty?
def empty? @output&.empty? end
def initialize(block, input = nil)
@parameter block [Proc] The block to call with the stream.
Initialize the hijacked body.
def initialize(block, input = nil) @block = block @input = input @task = nil @stream = nil @output = nil end
def inspect
def inspect "\#<#{self.class} #{@block.inspect}>" end
def read
def read unless @output @output = Writable.new @stream = ::Protocol::HTTP::Body::Stream.new(@input, @output) @task = Task.current.async do |task| task.annotate "Streaming hijacked body." @block.call(@stream) end end return @output.read end
def ready?
Whether the body has output ready to be read.
def ready? @output&.ready? end
def stream?
def stream? true end
def to_s
def to_s "<Hijack #{@block.class}>" end