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.
2 parents 6ca88ab + 90dd9d6 commit 0bbac2bCopy full SHA for 0bbac2b
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.keepAliveIntervalMs = interval * 1000;
0 commit comments