Class: Net::IRC::RplLoggedout

Inherits:
ReplyWithRegistryParameters show all
Defined in:
lib/net/irc.rb

Overview

902 <target> <id> <username> <hostname> :You are now logged out. (id <id>, username <username>, hostname <hostname>)

Constant Summary

Constants inherited from Message

Message::COMMAND_MAPS

Instance Attribute Summary

Attributes inherited from ReplyWithRegistryParameters

#hostname, #id, #username

Attributes inherited from ReplyWithTarget

#target

Attributes inherited from Reply

#text

Attributes inherited from Message

#command, #parameters, #prefix

Instance Method Summary collapse

Methods inherited from Message

command_for_number, parse, #prefix?, #to_s, #write

Constructor Details

#initialize(target, id, username, hostname, text) ⇒ RplLoggedout

Returns a new instance of RplLoggedout.



512
513
514
# File 'lib/net/irc.rb', line 512

def initialize(target, id, username, hostname, text)
  super(nil, 'RPL_LOGGED_OUT', target, id, username, hostname, text)
end