class DICT::Response
- DICT::Response
- Reference
- Object
Overview
A general representation of a response in the DICT protocol.
Every response contains at least a three-digit status code and usually also a status text on the same line. This class represents responses consisting only of the status code and status text (so-called "status responses" in the protocol). Other features of responses, like parameters in the status text or a textual body, are represented by subclasses of this type.
Direct Known Subclasses
Defined in:
response.crConstructors
Class Method Summary
-
.from_io(io : IO)
Parses a response from the given io.
-
.from_io_deep(io : IO)
Parses a response and the appropriate continuation responses from the given io.
- .parse_body(io : IO)
- .parse_params(io : IO, n : Number)
- .parse_params(string : String, n : Number)
Instance Method Summary
-
#from_io_more(io : IO)
Parses continuation responses expected after this response from io.
- #status : Status
- #status_message : String
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
Constructor Detail
Class Method Detail
Parses a response and the appropriate continuation responses from the given io.
Instance Method Detail
Parses continuation responses expected after this response from io. This default implementation does nothing.
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>