class DICT::Response

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.cr

Constructors

Class Method Summary

Instance Method Summary

Constructor Detail

def self.new(status : Status | Number, io : IO) #

[View source]

Class Method Detail

def self.from_io(io : IO) #

Parses a response from the given io.


[View source]
def self.from_io_deep(io : IO) #

Parses a response and the appropriate continuation responses from the given io.


[View source]
def self.parse_body(io : IO) #

[View source]
def self.parse_params(io : IO, n : Number) #

[View source]
def self.parse_params(string : String, n : Number) #

[View source]

Instance Method Detail

def from_io_more(io : IO) #

Parses continuation responses expected after this response from io. This default implementation does nothing.


[View source]
def status : Status #

[View source]
def status_message : String #

[View source]
def to_s(io : IO) #
Description copied from class Reference

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>

[View source]