Sha256: b8b14a084e41dfdc9967b4daf9653f2d98f2d18f6c4e71cebd7b0e2e4cc9a972

Contents?: true

Size: 998 Bytes

Versions: 5

Compression:

Stored size: 998 Bytes

Contents

module HTTPX
  module Resolver
    class Resolver
      include Callbacks
      include Loggable

      RECORD_TYPES: Hash[Integer, singleton(Resolv::DNS::Resource)]

      @record_type: singleton(Resolv::DNS::Resource)
      @options: Options
      @resolver_options: Hash[Symbol, untyped]
      @queries: Hash[String, Connection]
      @system_resolver: Resolv::Hosts

      def close: () -> void

      def closed?: () -> bool

      def empty?: () -> bool

      def emit_addresses: (Connection connection, ip_family family, Array[IPAddr]) -> void

      private

      def emit_resolved_connection: (Connection connection, Array[IPAddr] addresses) -> void

      def initialize: (ip_family? family, options options) -> void

      def early_resolve: (Connection connection, ?hostname: String) -> void

      def emit_resolve_error: (Connection connection, ?String hostname, ?StandardError) -> void

      def resolve_error: (String hostname, ?StandardError?) -> ResolveError
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
httpx-0.23.4 sig/resolver/resolver.rbs
httpx-0.23.3 sig/resolver/resolver.rbs
httpx-0.23.2 sig/resolver/resolver.rbs
httpx-0.23.1 sig/resolver/resolver.rbs
httpx-0.23.0 sig/resolver/resolver.rbs