Sha256: 51f4d9d1ab05db5ef13a1371066ed71dc86865b9543c579c78512117be5bb932
Contents?: true
Size: 923 Bytes
Versions: 3
Compression:
Stored size: 923 Bytes
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2017-2024, by Samuel Williams. require "protocol/http/request" require "protocol/http/headers" require_relative "../body/writable" module Async module HTTP module Protocol # Failed to send the request. The request body has NOT been consumed (i.e. #read) and you should retry the request. class RequestFailed < StandardError end # This is generated by server protocols. class Request < ::Protocol::HTTP::Request def connection nil end def hijack? false end def write_interim_response(status, headers = nil) end def peer self.connection&.peer end def remote_address self.peer&.address end def inspect "#<#{self.class}:0x#{self.object_id.to_s(16)} method=#{method} path=#{path} version=#{version}>" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
async-http-0.84.0 | lib/async/http/protocol/request.rb |
async-http-0.83.1 | lib/async/http/protocol/request.rb |
async-http-0.83.0 | lib/async/http/protocol/request.rb |