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 bfbb76f commit e851db5Copy full SHA for e851db5
rsocket_client.dart
@@ -6,4 +6,9 @@ void main() async {
6
await RSocketConnector.create().connect('tcp://127.0.0.1:42252');
7
var result = await rsocket.requestResponse(Payload.fromText('Ping', ''));
8
print(result.getDataUtf8());
9
+ /* rsocket.requestStream(Payload.fromText('Ping', '')).listen((payload) {
10
+ print(payload.getDataUtf8());
11
+ }, onDone: () {
12
+ print('done');
13
+ });*/
14
}
0 commit comments