Class: Net::IRC::RplTopic
- Inherits:
-
ReplyWithChannel
- Object
- Message
- Reply
- ReplyWithTarget
- ReplyWithChannel
- Net::IRC::RplTopic
- Defined in:
- lib/net/irc.rb
Overview
332 <target> <target> <channel> :<text>
Constant Summary
Constants inherited from Message
Instance Attribute Summary
Attributes inherited from ReplyWithChannel
Attributes inherited from ReplyWithTarget
Attributes inherited from Reply
Attributes inherited from Message
#command, #parameters, #prefix
Instance Method Summary collapse
-
#initialize(target, channel, text) ⇒ RplTopic
constructor
A new instance of RplTopic.
Methods inherited from Message
command_for_number, parse, #prefix?, #to_s, #write
Constructor Details
#initialize(target, channel, text) ⇒ RplTopic
Returns a new instance of RplTopic.
409 410 411 |
# File 'lib/net/irc.rb', line 409 def initialize(target, channel, text) super(nil, 'RPL_TOPIC', target, channel, text) end |