feat: handle reconnect response to re-configuration PCs. (#255)

* feat: handle reconnect response to re-configuration PCs.

* chore: fn rename.

* fmt: format proto/*.dart.

* update.
This commit is contained in:
CloudWebRTC
2023-03-27 09:20:18 +08:00
committed by GitHub
parent bc4df105fa
commit abd6bb32b6
3 changed files with 48 additions and 7 deletions
+9
View File
@@ -101,6 +101,15 @@ class SignalJoinResponseEvent with SignalEvent, InternalEvent {
});
}
@internal
// Received a ReconnectResponse from the server.
class SignalReconnectResponseEvent with SignalEvent, InternalEvent {
final lk_rtc.ReconnectResponse response;
const SignalReconnectResponseEvent({
required this.response,
});
}
/// Base class for a ConnectionStateUpdated event
@internal
abstract class ConnectionStateUpdatedEvent with InternalEvent {