Class: Discorb::Gateway::ReactionRemoveAllEvent
- Inherits:
-
GatewayEvent
- Object
- GatewayEvent
- Discorb::Gateway::ReactionRemoveAllEvent
- Defined in:
- lib/discorb/gateway_events.rb
Overview
Represents a MESSAGE_REACTION_REMOVE_ALL
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.
- #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.
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)
Note:
This method returns an object from client cache. it will return nil
if the object is not in cache.
170 171 172 |
# File 'lib/discorb/gateway_events.rb', line 170 def channel @channel end |
#channel_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the message was sent in.
163 164 165 |
# File 'lib/discorb/gateway_events.rb', line 163 def channel_id @channel_id 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.
173 174 175 |
# File 'lib/discorb/gateway_events.rb', line 173 def guild @guild end |
#guild_id -> Discorb::Snowflake (readonly)
Returns The ID of the guild the message was sent in.
167 168 169 |
# File 'lib/discorb/gateway_events.rb', line 167 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.
176 177 178 |
# File 'lib/discorb/gateway_events.rb', line 176 def @message end |
#message_id -> Discorb::Snowflake (readonly)
Returns The ID of the message.
165 166 167 |
# File 'lib/discorb/gateway_events.rb', line 165 def @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.
203 204 205 206 207 208 209 |
# File 'lib/discorb/gateway_events.rb', line 203 def (force: false) Async do next @message if !force && @message @message = @channel.(@message_id).wait end end |