Event Handler

Qiscus Chat SDK provides a simple way to let applications publish and listen to some real-time events. You can publish typing, read, user status, and custom event so that you can handle freely in the event handler. This lets you inform users that another participant is actively engaged in communicating with them.

Qiscus Chat SDK is using EventBus for broadcasting event to the entire applications. You can learn more about EventBus on this website. What you need to do is register the object which will receive event from EventBus. You can call it like this:

Java
Copy

Once you don't need to listen to the event anymore, you have to unregister the receiver by calling this method:

Java
Copy

This is an example on how to register an activity to receive event from EventBus:

Java
Copy

After you register the receiver, now you can subscribe to a specific event you need to know. What you need to do is you have to create a method with org.greenrobot.eventbus.Subscribe annotation. The method's name is up to you, but the parameter in your method must be equal with the event class which you want to listen to.

Receiving Message

You need to subscribe chat room listen chat room event in order to receive the message, this only for channel type. To subscribe the chat room you can follow this below code:

Java
Copy

To get the chat room object you can refer to this docs chat room.

You need to subscribeChatRoom in order to receive message for a channel type, otherwise you don't receive message. Then messages can be received through onMessageReceived event

Messages can be received through a onMessageReceived event. This event is triggered whenever users send a message. you can implement this event, for example:

Java
Copy

The implementation of activity class will be like this:

Java
Copy

QiscusCommentReceivedEvent does not guarantee the event only published once per unique comment. There will be the same QiscusCommentReceivedEvent published, so you need to handle it.

Listening Chat Room Event

Chat room event consist of 3 events that happen in a chat room, such as typing, delivered, and read. These events only work for 1-on-1 chat and group chat, for channel you need to subscribe in order to receive a message. To able receive these events you need to subscribe a chat room, for example:

Java
Copy

Once you don't need to listen these events, you can simply unsubscribe related a chat room, for example:

Java
Copy

Channel only get a message through messageReceived event after subscribe a chat room event

Sending Typing Status

You can have a typing status by publishing the typing event. You need to pass roomId and typing status. Set true to indicate the typing event is active, set false to indicate the event is inactive, you can use the code below:

Java
Copy

Receiving Typing Status

You can receive typing status once you have subscribed the a chat room event, for example:

Java
Copy

You need to subscribe a chat room event first, otherwise you will not receive this event

Receiving Message Status

After you listen some of events in a chat room, You can receive the real time message status which defined by the event, such as delivered, and read, for example:

Java
Copy

Receiving Participant Online Status

This section suits when you want to know whether the participant is online or not (last active). This case is only for 1-on-1 chat room. You can get participant's online status by passing related userId, for example:

Java
Copy

After that, you can create method that subscribes to event with com.qiscus.sdk.event.QiscusUserStatusEvent class, for example:

Java
Copy

Once you don't need this event anymore, you need to unsubscribe the related userId, for example:

Java
Copy

Receiving Deleted Message

You can receive deleted message through onMessageDeleted. This event is triggered whenever users delete a message, you can implement this event, for example:

Java
Copy

Customizing Real-Time Event

You can publish and listen to any events such as when participant is listening to music, writing document, and many other cases that you need to tell to other participants in a Chat Room.

First, you need to pass roomId with related ChatRoom you want to set, and the structured data to define what event that you want to send. Below is the example of structured data of writing document event:

JSON
Copy

After that, you can send event using this following method publishEvent():

Java
Copy

If you need to stop telling other participants that event is ended, you can send a flag to be false within your structured data, for example:

JSON
Copy

After sending an event, then you need to listen to the event with related roomId, for example:

Java
Copy

To retrieve event data, you can use EventBus by implementing @Subscribe annotation, for example:

Java
Copy

Connection to Qiscus Server

You can have a control in your App when you are connected or disconnected from Qiscus Server. You need to subscribe using EventBus, for example:

Java
Copy

This is the complete version of using Qiscus Event Handler:

Java
Copy
Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard