class Async::HTTP::Protocol::Request
An incoming HTTP request generated by server protocol implementations.
def connection
def connection nil end
def hijack?
def hijack? false end
def inspect
def inspect "#<#{self.class}:0x#{self.object_id.to_s(16)} method=#{method} path=#{path} version=#{version}>" end
def peer
def peer self.connection&.peer end
def remote_address
def remote_address self.peer&.address end
def write_interim_response(status, headers = nil)
@parameter status [Integer] The interim HTTP status code.
Write an interim (1xx) response back to the client.
def write_interim_response(status, headers = nil) end