See gh-17413
This commit is contained in:
Johnny Lim
2019-07-03 10:10:01 +09:00
committed by Stephane Nicoll
parent 939a247d87
commit 426ef749db
10 changed files with 19 additions and 18 deletions

View File

@@ -1982,7 +1982,7 @@ following information:
|`status`
|Response's HTTP status code if available (for example, `200` or `500`),
or `IO_ERROR` in case or I/O issues, `CLIENT_ERROR` otherwise
or `IO_ERROR` in case of I/O issues, `CLIENT_ERROR` otherwise
|`uri`
|Request's URI template prior to variable substitution, if possible (for example,

View File

@@ -3560,12 +3560,12 @@ The following code shows a typical example:
public MyService(RSocketRequester.Builder rsocketRequesterBuilder) {
this.rsocketRequester = rsocketRequesterBuilder
.connectTcp("example.org", 9090).block();
.connectTcp("example.org", 9090).block();
}
public Mono<User> someRSocketCall(String name) {
return this.requester.route("user").data(payload)
.retrieveMono(User.class);
return this.requester.route("user").data(name)
.retrieveMono(User.class);
}
}