class

HT2::Request

Inherits Reference < Object

Constructors

from_stream(stream : Stream) : Request

Create request from HTTP/2 stream

Source
new(method : String, path : String, headers : HTTP::Headers, body : IO, scheme : String = "https", authority : String | Nil = nil)
Source

Instance methods

authority
Source
body
Source
body_io
Source
headers
Source
method
Source
path
Source
query_params
Source
resource
Source
scheme
Source
to_lucky_request

Convert to Lucky-compatible request

Source
to_s(io : IO) : Nil

Appends a short String representation of this object which includes its class name and its object address.

class Person
  def initialize(@name : String, @age : Int32)
  end
end

Person.new("John", 32).to_s # => #<Person:0x10a199f20>
Source
version
Source