Polish
See gh-17413
This commit is contained in:
committed by
Stephane Nicoll
parent
939a247d87
commit
426ef749db
@@ -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,
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user