Sha256: 3bcc92f663b9f0a544945badc17961dcd75d131fd4e306cfede2613ee78a5daa

Contents?: true

Size: 633 Bytes

Versions: 3

Compression:

Stored size: 633 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2017-2024, by Samuel Williams.

require "protocol/http/response"

require_relative "../body/writable"

module Async
	module HTTP
		module Protocol
			# This is generated by client protocols.
			class Response < ::Protocol::HTTP::Response
				def connection
					nil
				end
				
				def hijack?
					false
				end
				
				def peer
					self.connection&.peer
				end
				
				def remote_address
					self.peer&.remote_address
				end
				
				def inspect
					"#<#{self.class}:0x#{self.object_id.to_s(16)} status=#{status}>"
				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/response.rb
async-http-0.83.1 lib/async/http/protocol/response.rb
async-http-0.83.0 lib/async/http/protocol/response.rb