Add start and stop for RSocket client and tester

Closes gh-378
This commit is contained in:
rstoyanchev
2022-05-06 10:55:30 +01:00
parent 5b59e51bab
commit 8549060d19
6 changed files with 72 additions and 12 deletions

View File

@@ -178,16 +178,17 @@ to execute GraphQL requests over RSocket requests.
----
In contrast to `HttpGraphQlClient`, the `RSocketGraphQlClient` is connection oriented,
which means it needs to establish a connection before making any requests. As you begin
to make requests, the connection is established transparently.
which means it needs to establish a session before making any requests. As you begin
to make requests, the session is established transparently. Alternatively, use the
client's `start()` method to establish the session explicitly before any requests.
`RSocketGraphQlClient` is also multiplexed. It maintains a single, shared connection for
all requests. If the connection is lost, it is re-established on the next request. You
can use the `dispose()` method on the underlying `RSocketRequester` to close the
connection explicitly.
`RSocketGraphQlClient` is also multiplexed. It maintains a single, shared session for
all requests. If the session is lost, it is re-established on the next request or if
`start()` is called again. You can also use the client's `stop()` method which cancels
in-progress requests, closes the session, and rejects new requests.
TIP: Use a single `RSocketGraphQlClient` instance for each server in order to have a
single, shared connection for all requests to that server. Each client instance
single, shared session for all requests to that server. Each client instance
establishes its own connection and that is typically not the intent for a single server.
Once `RSocketGraphQlClient` is created, you can begin to

View File

@@ -202,9 +202,9 @@ requests over RSocket:
----
`RSocketGraphQlTester` is connection oriented and multiplexed. Each instance establishes
its own single, shared connection for all requests. Typically, you'll want to use a single
instance only per server. You can use the `dispose()` method on the underlying
`RSocketRequester` to close the connection explicitly.
its own single, shared session for all requests. Typically, you'll want to use a single
instance only per server. You can use the `stop()` method on the tester to close the
session explicitly.
Once `RSocketGraphQlTester` is created, you can begin to
<<testing-requests, execute requests>> using the same API, independent of the underlying