Structure Bounded-Mailbox

A mailbox with an upper bound on the number of objects that can be simultaneously present.
Adding new elements may block when that number is reached.
The struct bounded-mailbox has a constructor make-bounded-mailbox that takes a capacity as a parameter.
Read-only accessor bounded-mailbox-semaphore refers to a semaphore that controls the number of elements that are present in the mailbox.
Read-only accessor bounded-mailbox-mailbox is the underlying actual mailbox.

Part of:

package elprep

Direct Method

mailbox-readRead an object from a mailbox. May block if there are no objects in the mailbox.
mailbox-sendSend an object to a mailbox.