Class: Net::IRC::RplTopic

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

Overview

332 <target> <target> <channel> :<text>

Constant Summary

Constants inherited from Message

Message::COMMAND_MAPS

Instance Attribute Summary

Attributes inherited from ReplyWithChannel

#channel

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, 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