Class: ModSpox::Messages::Incoming::TopicInfo

Inherits:
Message
  • Object
show all
Defined in:
lib/mod_spox/messages/incoming/TopicInfo.rb

Instance Attribute Summary collapse

Attributes inherited from Message

#raw_content

Instance Method Summary collapse

Constructor Details

#initialize(raw, channel, nick, time) ⇒ TopicInfo

Returns a new instance of TopicInfo.



12
13
14
15
16
17
# File 'lib/mod_spox/messages/incoming/TopicInfo.rb', line 12

def initialize(raw, channel, nick, time)
    super(raw)
    @channel = channel
    @nick = nick
    @time = time
end

Instance Attribute Details

#channelObject (readonly)

channel topic info is for



7
8
9
# File 'lib/mod_spox/messages/incoming/TopicInfo.rb', line 7

def channel
  @channel
end

#nickObject (readonly)

last nick to set topic



9
10
11
# File 'lib/mod_spox/messages/incoming/TopicInfo.rb', line 9

def nick
  @nick
end

#timeObject (readonly)

time topic was set



11
12
13
# File 'lib/mod_spox/messages/incoming/TopicInfo.rb', line 11

def time
  @time
end