openvidu-server: Renamed networkQualityChanged

pull/550/head
csantosm 2020-10-09 10:52:39 +02:00
parent 68f68f62e9
commit a3ef133b93
1 changed files with 2 additions and 2 deletions

View File

@ -302,9 +302,9 @@ public class SessionEventsHandler {
rpcNotificationService.sendResponse(participant.getParticipantPrivateId(), transactionId, new JsonObject());
}
public void onNetworkQualityChanged(Participant participant, JsonObject params) {
public void onNetworkQualityLevelChanged(Participant participant, JsonObject params) {
rpcNotificationService.sendNotification(participant.getParticipantPrivateId(),
ProtocolElements.NETWORKQUALITYCHANGED_METHOD, params);
ProtocolElements.NETWORKQUALITYLEVELCHANGED_METHOD, params);
}
public void onSendMessage(Participant participant, JsonObject message, Set<Participant> participants,