Sha256: b66863aef0e56bc8741d76f35ccc2c39fd228f4e664bc26755c191c8412c75fa

Contents?: true

Size: 1.93 KB

Versions: 13

Compression:

Stored size: 1.93 KB

Contents

module HTTPX
  class Request
    extend Forwardable
    include Callbacks

    METHODS: Array[Symbol]
    USER_AGENT: String

    attr_reader verb: verb
    attr_reader uri: URI::HTTP | URI::HTTPS
    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?

    @trailers: Headers?
    @informational_status: Integer?
    @query: String?
    @drainer: Enumerator[String, void]?

    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

    def read_timeout: () -> Numeric

    def write_timeout: () -> Numeric

    def request_timeout: () -> Numeric

    private

    def initialize_body: (Options options) -> Transcoder::_Encoder?

    class Body
      @headers: Headers
      @body: body_encoder?
      @unbounded_body: bool

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

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

    class ProcIO
      @block: ^(String) -> void

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

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
httpx-0.24.7 sig/request.rbs
httpx-0.24.6 sig/request.rbs
httpx-0.24.5 sig/request.rbs
httpx-0.24.4 sig/request.rbs
httpx-0.24.3 sig/request.rbs
httpx-0.24.2 sig/request.rbs
httpx-0.24.1 sig/request.rbs
httpx-0.24.0 sig/request.rbs
httpx-0.23.4 sig/request.rbs
httpx-0.23.3 sig/request.rbs
httpx-0.23.2 sig/request.rbs
httpx-0.23.1 sig/request.rbs
httpx-0.23.0 sig/request.rbs