* impl * retry logic * simulate * pass checks * adjust log level * retry condition * fix simulate scenario params * format * use `RTCPeerConnectionState` instead of `RTCIceConnectionState` * adjust retry * additional check for completer * more logging * fix id * pub * change package * doc update * retry tests * format * apply suggestions
8 lines
279 B
Dart
8 lines
279 B
Dart
class Timeouts {
|
|
static const connection = Duration(seconds: 10);
|
|
static const debounce = Duration(milliseconds: 100);
|
|
static const publish = Duration(seconds: 10);
|
|
static const peerConnection = Duration(seconds: 10);
|
|
static const iceRestart = Duration(seconds: 10);
|
|
}
|