Sha256: 9f330fb1597f2f723d145bb5ff2ed1a26a1bf342c1fee0c0dc3306248b894bde

Contents?: true

Size: 1022 Bytes

Versions: 9

Compression:

Stored size: 1022 Bytes

Contents

module HTTPX
  class TCP
    include Loggable

    attr_reader ip: IPAddr?

    attr_reader port: Integer

    attr_reader addresses: Array[ipaddr]

    attr_reader state: Symbol

    attr_reader interests: io_interests

    alias host ip

    def initialize: (URI::Generic origin, Array[ipaddr]? addresses, options options) -> void

    def add_addresses: (Array[ipaddr] addrs) -> void

    def to_io: () -> ::IO

    def protocol: () -> String

    def connect: () -> void

    private

    # :nocov:
    def try_connect: () -> void

    public

    def read: (Integer size, ?(Buffer | String) buffer) -> (0 | nil | untyped)

    def write: (Buffer buffer) -> Integer?

    def close: () -> void

    def connected?: () -> bool

    def closed?: () -> bool

    # :nocov:
    def inspect: () -> ::String

    private

    def build_socket: () -> Socket

    def transition: (Symbol nextstate) -> void

    def do_transition: (Symbol nextstate) -> void

    def log_transition_state: (Symbol nextstate) -> void
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
httpx-0.24.3 sig/io/tcp.rbs
httpx-0.24.2 sig/io/tcp.rbs
httpx-0.24.1 sig/io/tcp.rbs
httpx-0.24.0 sig/io/tcp.rbs
httpx-0.23.4 sig/io/tcp.rbs
httpx-0.23.3 sig/io/tcp.rbs
httpx-0.23.2 sig/io/tcp.rbs
httpx-0.23.1 sig/io/tcp.rbs
httpx-0.23.0 sig/io/tcp.rbs