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.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract Unit onUserReactionClick(Message message, User user, Reaction reaction) Called when a reaction left by a user is clicked.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.