Sha256: 6330cad6e34644ace64349703782106edf1750e4b00ca071c68b559bed76fa79

Contents?: true

Size: 1.49 KB

Versions: 9

Compression:

Stored size: 1.49 KB

Contents

module HTTPX
  class Request
    extend Forwardable
    include Callbacks

    METHODS: Array[Symbol]
    USER_AGENT: String

    attr_reader verb: Symbol
    attr_reader uri: URI::Generic
    attr_reader headers: Headers
    attr_reader body: Body
    attr_reader state: Symbol
    attr_reader options: Options
    attr_reader response: response?
    attr_reader drain_error: StandardError?

    def initialize: (Symbol | String, generic_uri, ?options) -> untyped

    def interests: () -> (:r | :w)

    def merge_headers: (_Each[[String, headers_value]]) -> void

    def scheme: () -> String

    def response=: (response) -> void

    def path: () -> String

    def authority: () -> String

    def origin: () -> String

    def query: () -> String

    def drain_body: () -> String?

    def inspect: () -> String

    def transition: (Symbol) -> void

    def expects?: () -> boolish

    def trailers: () -> Headers

    def trailers?: () -> boolish

    class Body
      def initialize: (Headers, Options) -> untyped
      def each: () { (String) -> void } -> void
              | () -> Enumerable[String]

      def rewind: () -> void
      def empty?: () -> bool
      def bytesize: () -> Numeric
      def stream: (Transcoder::_Encoder) -> bodyIO
      def unbounded_body?: () -> bool
      def chunked?: () -> bool
      def chunk!: () -> void
      def inspect: () -> String
    end

    class ProcIO
      def initialize: (^(String) -> void) -> untyped

      def write: (String data) -> Integer
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
httpx-0.18.7 sig/request.rbs
httpx-0.18.6 sig/request.rbs
httpx-0.18.5 sig/request.rbs
httpx-0.18.4 sig/request.rbs
httpx-0.18.3 sig/request.rbs
httpx-0.18.2 sig/request.rbs
httpx-0.18.1 sig/request.rbs
httpx-0.18.0 sig/request.rbs
httpx-0.17.0 sig/request.rbs