You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fire and forget sends a request without a response. This is not just ignoring the response; the underlying protocol does not send anything back to the caller. To make a request fire-and-forget with RSocket RPC you need to return google.Protobuf.Empty in your IDL. This will generate fire and forget code.
29
+
Fire and forget sends a request without a response. This is not just ignoring the response; the underlying protocol does not send anything back to the caller. To make a request fire-and-forget with RSocket RPC you need to return google.protobuf.Empty in your IDL. This will generate fire and forget code.
RSocket RPC Java uses a Protobuf plugin to generate application code. Add the following code to your project's Gradle file so that it will generate code from your Protobuf IDL when your application is compiled.
The above example streams in 11 items to a server. The server receives the stream, counts the most common words, and then returns a message detailing the data received.
325
325
326
-
## Working example
327
-
To see a working example of the code described here please view the [SimpleServiceTest](https://github.com/netifi/RSocket RPC-java/blob/master/testing-proto/src/test/java/io/netifi/testing/protobuf/SimpleServiceTest.java) class.
328
-
329
-
330
326
## Release Notes
331
327
332
-
Please find release notes at [https://github.com/netifi/RSocket RPC-java/releases](https://github.com/netifi/RSocket RPC-java/releases).
328
+
Please find release notes at [https://github.com/netifi/rsocket-rpc-java/releases](https://github.com/netifi/rsocket-rpc-java/releases).
333
329
334
330
## Bugs and Feedback
335
331
336
-
For bugs, questions, and discussions please use the [Github Issues](https://github.com/netifi/RSocket RPC-java/issues).
332
+
For bugs, questions, and discussions please use the [Github Issues](https://github.com/netifi/rsocket-rpc-java/issues).
0 commit comments