Class: Net::IRC::RplLoggedout
- Inherits:
-
ReplyWithRegistryParameters
- Object
- Message
- Reply
- ReplyWithTarget
- ReplyWithRegistryParameters
- Net::IRC::RplLoggedout
- 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
Instance Attribute Summary
Attributes inherited from ReplyWithRegistryParameters
Attributes inherited from ReplyWithTarget
Attributes inherited from Reply
Attributes inherited from Message
#command, #parameters, #prefix
Instance Method Summary collapse
-
#initialize(target, id, username, hostname, text) ⇒ RplLoggedout
constructor
A new instance of RplLoggedout.
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 |