Sha256: 048ad6d4d7bf8ef6bb9e127211909c9ea946ece8c6c65dbe940f0385c47b1afd

Contents?: true

Size: 1.12 KB

Versions: 11

Compression:

Stored size: 1.12 KB

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

    # TODO: lift when https://github.com/ruby/rbs/issues/1497 fixed
    def initialize: (URI::Generic origin, Array[ipaddr]? addresses, options options) ?{ (self) -> void } -> 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 expired?: () -> boolish

    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

11 entries across 11 versions & 1 rubygems

Version Path
httpx-1.2.4 sig/io/tcp.rbs
httpx-1.2.3 sig/io/tcp.rbs
httpx-1.2.2 sig/io/tcp.rbs
httpx-1.2.1 sig/io/tcp.rbs
httpx-1.2.0 sig/io/tcp.rbs
httpx-1.1.5 sig/io/tcp.rbs
httpx-1.1.4 sig/io/tcp.rbs
httpx-1.1.3 sig/io/tcp.rbs
httpx-1.1.2 sig/io/tcp.rbs
httpx-1.1.1 sig/io/tcp.rbs
httpx-1.1.0 sig/io/tcp.rbs