Skip to content

RoleChangedEvent

Ajša Terko edited this page Jul 23, 2025 · 1 revision



getRole()

Description

Getter for the role field.

Arguments

  • none

Returns

  • Role - The value of the role field, which represents the new role that has been assigned to the local participant.

Example

ApplicationCallEventListener applicationCallEventListener = new DefaultApplicationCallEventListener() {
    @Override
    public void onRoleChanged(RoleChangedEvent roleChangedEvent) {
        Role role = roleChangedEvent.getRole();
    }
};

Tutorials

Migration guides

Reference documentation

Clone this wiki locally