Skip to content

Commit

Permalink
fix(doc): correct incorrect statements in Design and Workflow sections (
Browse files Browse the repository at this point in the history
  • Loading branch information
Gezi-lzq committed Aug 7, 2023
1 parent 1c43ebe commit 6ef2f43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/design.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ Client identifier provides identity information for each client event within the

* `macbook-pro`: hostname of device;
* `90009`: process identifier;
* `2`: client index within current process;
* `0`: client index within current process;
* `2dyeb8lep`: the unique string within process.

>**Note**: Implementations of client identifier by different languages may vary slightly, but the uniqueness is the first principle that must be followed.
Expand Down
2 changes: 1 addition & 1 deletion docs/workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The receiving procedure is as follows:
1. Fetch the latest queue assignment from server.
2. If flow control occurs during message receiving, consumer will retry after 20 milliseconds, otherwise go to step3.
3. Cache message and trigger the consumption(Once the lifecycle of message is over, it will removed from cache immediately).
4. Check the cache is full, consumer will try to receive message immediately, otherwise retry after 1 seconds.
4. Check if the cache is full. If the cache is full, the consumer will attempt to receive the message after 1 second; otherwise, it will retry immediately.

### Message Consumption in Push Consumer(Non-FIFO)

Expand Down

0 comments on commit 6ef2f43

Please sign in to comment.