Class: Discorb::Gateway::ReactionEvent
- Inherits:
 - 
      GatewayEvent
      
        
- Object
 - GatewayEvent
 - Discorb::Gateway::ReactionEvent
 
 
- Defined in:
 - lib/discorb/gateway.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.
 - #member -> nil, Discorb::Member readonly
 - #message -> nil, Discorb::Message readonly
 - 
  
    
      #message_id -> Discorb::Snowflake 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The ID of the message.
 - #user -> nil, Discorb::User readonly
 - 
  
    
      #user_id -> Discorb::Snowflake 
    
    
      (also: #member_id)
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The ID of the user who reacted.
 
Instance Method Summary collapse
- 
  
    
      #fetch_message(force: false) -> Discorb::Message 
    
    
  
  
  
  
  
  
  
  
  
    
Fetch the message.
 
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.
      39 40 41  | 
    
      # File 'lib/discorb/gateway.rb', line 39 def channel @channel end  | 
  
#channel_id -> Discorb::Snowflake (readonly)
Returns The ID of the channel the message was sent in.
      29 30 31  | 
    
      # File 'lib/discorb/gateway.rb', line 29 def channel_id @channel_id end  | 
  
#data -> Hash (readonly)
Returns The raw data of the event.
      24 25 26  | 
    
      # File 'lib/discorb/gateway.rb', line 24 def data @data end  | 
  
#emoji -> Discorb::UnicodeEmoji, Discorb::PartialEmoji (readonly)
Returns The emoji that was reacted with.
      50 51 52  | 
    
      # File 'lib/discorb/gateway.rb', line 50 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.
      42 43 44  | 
    
      # File 'lib/discorb/gateway.rb', line 42 def guild @guild end  | 
  
#guild_id -> Discorb::Snowflake (readonly)
Returns The ID of the guild the message was sent in.
      33 34 35  | 
    
      # File 'lib/discorb/gateway.rb', line 33 def guild_id @guild_id end  | 
  
#member -> nil, Discorb::Member (readonly)
This method returns an object from client cache. it will return nil if the object is not in cache.
      48 49 50  | 
    
      # File 'lib/discorb/gateway.rb', line 48 def member @member 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.
      45 46 47  | 
    
      # File 'lib/discorb/gateway.rb', line 45 def @message end  | 
  
#message_id -> Discorb::Snowflake (readonly)
Returns The ID of the message.
      31 32 33  | 
    
      # File 'lib/discorb/gateway.rb', line 31 def @message_id end  | 
  
#user -> nil, Discorb::User (readonly)
This method returns an object from client cache. it will return nil if the object is not in cache.
      36 37 38  | 
    
      # File 'lib/discorb/gateway.rb', line 36 def user @user end  | 
  
#user_id -> Discorb::Snowflake (readonly) Also known as: member_id
Returns The ID of the user who reacted.
      26 27 28  | 
    
      # File 'lib/discorb/gateway.rb', line 26 def user_id @user_id end  | 
  
Instance Method Details
#fetch_message(force: false) -> Discorb::Message
This is an asynchronous method, it will return a Async::Task object. Use Async::Task#wait to get the result.
This method calls HTTP request.
Fetch the message. If message is cached, it will be returned.
      89 90 91 92 93 94 95  | 
    
      # File 'lib/discorb/gateway.rb', line 89 def (force: false) Async do next @message if !force && @message @message = @channel.(@message_id).wait end end  |