We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f31cc6e commit 90dd9d6Copy full SHA for 90dd9d6
lib/rsocket_connector.dart
@@ -37,6 +37,11 @@ class RSocketConnector {
37
return this;
38
}
39
40
+ RSocketConnector errorConsumer(ErrorConsumer errorConsumer) {
41
+ _errorConsumer = errorConsumer;
42
+ return this;
43
+ }
44
+
45
// set the keep alive, and unit is second
46
RSocketConnector keepAlive(int interval, int maxLifeTime) {
47
this.keepAliveInterval = interval;
0 commit comments