Skip to content

Instantly share code, notes, and snippets.

@AlexPrestonSB
Last active August 7, 2020 21:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexPrestonSB/60cc9a1014abd6eb3c6c916acabba559 to your computer and use it in GitHub Desktop.
Save AlexPrestonSB/60cc9a1014abd6eb3c6c916acabba559 to your computer and use it in GitHub Desktop.
Sender side for getting an update for messages that are marked as delivered.
//Sender’s side
SendBird.addChannelHandler(UNIQUE_HANDLER_ID, new SendBird.ChannelHandler() {
@Override
public void onMessageReceived(BaseChannel baseChannel, BaseMessage baseMessage) {
}
@Override
public void onDeliveryReceiptUpdated(GroupChannel channel) {
...
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment