HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
These docs are for v8.1. Click to read the latest docs for v12.0.0.

Set Received-Reply Handler

Use this handler to run specific code each time a new message is received by the SDK.

This block is executed each time a new message is received. This can be used to show your own UI when a new message is received when default chat notifications are disabled, for example.

Replies.didReceiveReplyHandler = {
    // Notify users about new message.
}
IBGReplies.didReceiveReplyHandler = ^{
    // Notify users about new message.
};
Replies.setOnNewReplyReceivedCallback(new Runnable() {
	//Your code goes here.
});
Replies.setOnNewReplyReceivedCallback(function () {
    //Create custom alert
});
//iOS
Replies.DidReceiveReplyHandler = () => 
{
  Console.WriteLine("Received New Reply!");
};

  
//Android
Replies.setOnNewReplyReceivedCallback(new Runnable() {
	//Your code goes here.
});