It's possible to receive user mention from anyone
session.getNotification().addNotificationListener(new AbstractNotificationCallback() {
@Override
public void onMention(@NotNull Comment comment) {
// new mention callback
}
});
session.websocket.onMentionComment((comment: Comment) => {
});
session.websocket.onMentionComment((comment) => {
});