Interface MessageListView.UserReactionClickListener
-
- All Implemented Interfaces:
@Deprecated(message = "Use OnUserReactionClickListener instead", replaceWith = @ReplaceWith(imports = {}, expression = "OnUserReactionClickListener")) public interface MessageListView.UserReactionClickListener
Interface definition for a callback to be invoked when a user reaction is clicked on the message options overlay.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonUserReactionClick(Message message, User user, Reaction reaction)Called when a reaction left by a user is clicked. -
-
Method Detail
-
onUserReactionClick
abstract Unit onUserReactionClick(Message message, User user, Reaction reaction)
Called when a reaction left by a user is clicked.
- Parameters:
message- The message the reaction was left for.user- The user who reacted to the message.reaction- The reaction object.
-
-
-
-