Class: Discorb::Gateway::ReactionEvent
- Inherits:
-
GatewayEvent
- Object
- GatewayEvent
- Discorb::Gateway::ReactionEvent
- Defined in:
- lib/discorb/gateway_events.rb
Overview
Represents a reaction event.
Instance Attribute Summary collapse
- #channel -> nil, Discorb::Channel readonly
-
#channel_id -> Discorb::Snowflake
readonly
The ID of the channel the message was sent in.
-
#data -> Hash
readonly
The raw data of the event.
-
#emoji -> Discorb::UnicodeEmoji, Discorb::PartialEmoji
readonly
The emoji that was reacted with.
- #guild -> nil, Discorb::Guild readonly
-
#guild_id -> Discorb::Snowflake
readonly
The ID of the guild the message was sent in.
- #message -> nil, Discorb::Message readonly
-
#message_id -> Discorb::Snowflake
readonly
The ID of the message.
- #user -> nil, ... (also: #member) readonly
-
#user_id -> Discorb::Snowflake
(also: #member_id)
readonly
The ID of the user who reacted.
Instance Method Summary collapse
-
#fetch_message(force: false) -> Async::Task<Discorb::Message>
Fetch the message.
Methods inherited from GatewayEvent
Instance Attribute Details
#channel -> nil, Discorb::Channel (readonly)
This method returns an object from client cache. it will return nil
if the object is not in cache.
46 47 48 |
# File 'lib/discorb/gateway_events.rb', line 46 def channel @channel end |
#channel_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the message was sent in.
35 36 37 |
# File 'lib/discorb/gateway_events.rb', line 35 def channel_id @channel_id end |
#data -> Hash (readonly)
Returns The raw data of the event.
30 31 32 |
# File 'lib/discorb/gateway_events.rb', line 30 def data @data end |
#emoji -> Discorb::UnicodeEmoji, Discorb::PartialEmoji (readonly)
Returns The emoji that was reacted with.
54 55 56 |
# File 'lib/discorb/gateway_events.rb', line 54 def emoji @emoji end |
#guild -> nil, Discorb::Guild (readonly)
This method returns an object from client cache. it will return nil
if the object is not in cache.
49 50 51 |
# File 'lib/discorb/gateway_events.rb', line 49 def guild @guild end |
#guild_id -> Discorb::Snowflake (readonly)
Returns The ID of the guild the message was sent in.
39 40 41 |
# File 'lib/discorb/gateway_events.rb', line 39 def guild_id @guild_id end |
#message -> nil, Discorb::Message (readonly)
This method returns an object from client cache. it will return nil
if the object is not in cache.
52 53 54 |
# File 'lib/discorb/gateway_events.rb', line 52 def @message end |
#message_id -> Discorb::Snowflake (readonly)
Returns The ID of the message.
37 38 39 |
# File 'lib/discorb/gateway_events.rb', line 37 def @message_id end |
#user -> nil, ... (readonly) Also known as: member
This method returns an object from client cache. it will return nil
if the object is not in cache.
42 43 44 |
# File 'lib/discorb/gateway_events.rb', line 42 def user @user end |
#user_id -> Discorb::Snowflake (readonly) Also known as: member_id
Returns The ID of the user who reacted.
32 33 34 |
# File 'lib/discorb/gateway_events.rb', line 32 def user_id @user_id end |
Instance Method Details
#fetch_message(force: false) -> Async::Task<Discorb::Message>
Fetch the message. If message is cached, it will be returned.
112 113 114 115 116 117 118 |
# File 'lib/discorb/gateway_events.rb', line 112 def (force: false) Async do next @message if !force && @message @message = @channel.(@message_id).wait end end |