Sha256: a8b5796e0e503bc4ff8a2cbe6c231f2409fe47cadbe1d370d8362c6653509971

Contents?: true

Size: 1.66 KB

Versions: 5

Compression:

Stored size: 1.66 KB

Contents

module HTTPX
  class Connection::HTTP1
    include Callbacks
    include Loggable

    UPCASED: Hash[String, String]
    MAX_REQUESTS: Integer
    CRLF: String

    attr_reader pending: Array[Request]
    attr_reader requests: Array[Request]

    @options: Options
    @max_concurrent_requests: Integer
    @max_requests: Integer
    @parser: Parser::HTTP1
    @buffer: Buffer
    @version: [Integer, Integer]
    @handshake_completed: bool
    @pipelining: bool

    @request: Request?

    def interests: () -> io_interests?

    def reset: () -> void

    def close: () -> void

    def empty?: () -> bool

    def exhausted?: () -> bool

    def <<: (String) -> void

    def send: (Request) -> void

    def consume: () -> void

    def handle_error: (StandardError ex) -> void

    def on_start: () -> void

    def on_headers: (Hash[String, Array[String]] headers) -> void

    def on_trailers: (Hash[String, Array[String]] headers) -> void

    def on_data: (String chunk) -> void

    def on_complete: () -> void

    def dispatch: () -> void

    def ping: () -> void

    def timeout: () -> Numeric?

    private

    def initialize: (Buffer, options) -> untyped

    def manage_connection: (Request request, Response response) -> void

    def disable: () -> void

    def disable_pipelining: () -> void

    def set_protocol_headers: (Request request) -> _Each[[String, String]]

    def handle: (Request request) -> void

    def join_headers: (Request request) -> void

    def join_trailers: (Request request) -> void

    def join_headers2: (_Each[[String, String]] headers) -> void

    def join_body: (Request request) -> void

    def capitalized: (String field) -> String
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
httpx-1.1.5 sig/connection/http1.rbs
httpx-1.1.4 sig/connection/http1.rbs
httpx-1.1.3 sig/connection/http1.rbs
httpx-1.1.2 sig/connection/http1.rbs
httpx-1.1.1 sig/connection/http1.rbs