Class: Discorb::Gateway::ReactionRemoveEmojiEvent

Inherits:
GatewayEvent
  • Object
show all
Defined in:
lib/discorb/gateway.rb

Overview

Represents a MESSAGE_REACTION_REMOVE_EMOJI event.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from GatewayEvent

#inspect

Instance Attribute Details

#channel -> nil, Discorb::Channel (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (Discorb::Channel)

    The channel the message was sent in.



231
232
233
# File 'lib/discorb/gateway.rb', line 231

def channel
  @channel
end

#channel_id -> Discorb::Snowflake (readonly)

Returns The ID of the channel the message was sent in.

Returns:



224
225
226
# File 'lib/discorb/gateway.rb', line 224

def channel_id
  @channel_id
end

#emoji -> Discorb::UnicodeEmoji, Discorb::PartialEmoji (readonly)

Returns The emoji that was reacted with.

Returns:



239
240
241
# File 'lib/discorb/gateway.rb', line 239

def emoji
  @emoji
end

#guild -> nil, Discorb::Guild (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (Discorb::Guild)

    The guild the message was sent in.



234
235
236
# File 'lib/discorb/gateway.rb', line 234

def guild
  @guild
end

#guild_id -> Discorb::Snowflake (readonly)

Returns The ID of the guild the message was sent in.

Returns:



228
229
230
# File 'lib/discorb/gateway.rb', line 228

def guild_id
  @guild_id
end

#message -> nil, Discorb::Message (readonly)

Note:

This method returns an object from client cache. it will return nil if the object is not in cache.

Returns:

  • (nil)

    The object wasn't cached.

  • (Discorb::Message)

    The message the reaction was sent in.



237
238
239
# File 'lib/discorb/gateway.rb', line 237

def message
  @message
end

#message_id -> Discorb::Snowflake (readonly)

Returns The ID of the message.

Returns:



226
227
228
# File 'lib/discorb/gateway.rb', line 226

def message_id
  @message_id
end

Instance Method Details

#fetch_message(force: false) -> Async::Task<Discorb::Message>

Fetch the message. If message is cached, it will be returned.

Parameters:

  • force (Boolean) (defaults to: false)

    Whether to force fetching the message.

Returns:



267
268
269
270
271
272
273
# File 'lib/discorb/gateway.rb', line 267

def fetch_message(force: false)
  Async do
    next @message if !force && @message

    @message = @channel.fetch_message(@message_id).wait
  end
end