adjustable send/receive queue sizes #7
Labels
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: j4nk/open-card-table#7
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Should be able to receive and send up to num_clients messages every loop, currently can only receive and send one message per loop
Due to design, each client is only capable of sending at most one message per loop iteration so num_clients length is tight bound on worst case
Opted for an unbounded number of sends and a maximum number of receives set by OCT_NETWORK_MAX_RECVS (10 by default). Completed with
f254c7580d