The manager of reactions that belong to a message.
new MessageReactionManager(message);
The message the reactions belong to.
Readonly
This cache of the manager.
Add a reaction to the message.
reactions.add(123);
The ID of the emoji to react with.
Remove a reaction from message.
reactions.remove(123);
The ID of the emoji to remove.
Set the maximum cache size of the manager.
The manager.
manager.setMaxCache(100);
The maximum size of the cache.
The manager of reactions that belong to a message.
Example