Conversation
* (M) client/client.go
- TODOs for implementation details that are pending.
* (M) client/client.go
- add handling for receiving messages from a client into
restructured pending and result queues that include more
info including the timestamp and result codes.
* (M) client/client_test.go
- add test coverage for all non-integration parts.
* (M) fluent/fluent.go
- Since the client connection parameters might be across
different RPCs, restructure the fluent client (per the design
doc) to encapsulate the connection parameters.
* (M) fluent/fluent_test.go
- Update existing tests to correspond to absorb the changes
described above.
* (M) client/client.go
* (M) client/client_test.go
- Restructure pneding queues to be able to store the type of
transaction that is pending, not just operations - such that
it is possible to track latency of other operations and ensure
that the client is aware that is has pending non-operations
requests.
- Add a converged method to check whether there are any pending
requests from the server in the client.
* (M) fluent/fluent.go
* (M) fluent/fluent_test.go
- Add initial Await() implementation.
sthesayi
approved these changes
Jun 7, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR creates an initial
Await()implementation in the fluent library, and restructures the queues in the client to allow for pending transactiosn to be tracked even when they are not AFTOperations.