We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When a client subscribes to the decentralized backend, it might receive messages out of order.
Group messages can be inherently "out of order" and can be sorted by timestamp, but messages also depend on commits in their "depends_on" field.
A message can not be processed before all messages in the "depends_on" field have been processed.
This does not mean that other messages that have different dependencies can't proceed.
As such, the client must implement an "ice-box" that holds these messages until the dependencies arrive.
There are two solutions I can think of:
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem?
When a client subscribes to the decentralized backend, it might receive messages out of order.
Group messages can be inherently "out of order" and can be sorted by timestamp, but messages also depend on commits in their "depends_on" field.
A message can not be processed before all messages in the "depends_on" field have been processed.
This does not mean that other messages that have different dependencies can't proceed.
As such, the client must implement an "ice-box" that holds these messages until the dependencies arrive.
There are two solutions I can think of:
Describe the solution to the problem
No response
Describe the uses cases for the feature
No response
Additional details
No response
The text was updated successfully, but these errors were encountered: