It is possible to handle users that join your events in real time as follows
session.getNotification().addNotificationListener(new AbstractNotificationCallback() {
@Override
public void onUserJoinMyEvent(@NotNull User user, @NotNull Event event) {
// received User and Event
}
});