aboutsummaryrefslogtreecommitdiff
path: root/api/channels.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-08-18 18:23:32 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-08-18 18:23:32 -0400
commit43b4af23f84c27dada7a3515a7661f6311e4b3ba (patch)
treeefd2493fc393aa8f049374d052e258981fd117ae /api/channels.md
parenta86eba55d7e26bc357735ccf190013b9346ccb4d (diff)
API documentation
Diffstat (limited to 'api/channels.md')
-rw-r--r--api/channels.md138
1 files changed, 138 insertions, 0 deletions
diff --git a/api/channels.md b/api/channels.md
new file mode 100644
index 00000000..880825ce
--- /dev/null
+++ b/api/channels.md
@@ -0,0 +1,138 @@
+# Channels
+
+Channels are a thread-safe message queue for communicating between threads,
+although they can also be used as a general-purpose queue.
+
+```tomo
+channel := |Int|
+channel:push(10)
+channel:push(20)
+>> channel:pop()
+= 10
+>> channel:pop()
+= 20
+```
+
+## Channel Methods
+
+### `push`
+
+**Description:**
+Adds an item to the channel.
+
+**Usage:**
+```markdown
+push(channel:|T|, item: T) -> Void
+```
+
+**Parameters:**
+
+- `channel`: The channel to which the item will be added.
+- `item`: The item to add to the channel.
+
+**Returns:**
+Nothing.
+
+**Example:**
+```markdown
+>> channel:push("Hello")
+```
+
+---
+
+### `push_all`
+
+**Description:**
+Adds multiple items to the channel.
+
+**Usage:**
+```markdown
+push_all(channel:|T|, items: [T]) -> Void
+```
+
+**Parameters:**
+
+- `channel`: The channel to which the items will be added.
+- `items`: The array of items to add to the channel.
+
+**Returns:**
+Nothing.
+
+**Example:**
+```markdown
+>> channel:push_all([1, 2, 3])
+```
+
+---
+
+### `pop`
+
+**Description:**
+Removes and returns an item from the channel. If the channel is empty, it waits until an item is available.
+
+**Usage:**
+```markdown
+pop(channel:|T|) -> T
+```
+
+**Parameters:**
+
+- `channel`: The channel from which to remove an item.
+
+**Returns:**
+The item removed from the channel.
+
+**Example:**
+```markdown
+>> channel:pop()
+= "Hello"
+```
+
+---
+
+### `clear`
+
+**Description:**
+Removes all items from the channel.
+
+**Usage:**
+```markdown
+clear(channel:|T|) -> Void
+```
+
+**Parameters:**
+
+- `channel`: The mutable reference to the channel.
+
+**Returns:**
+Nothing.
+
+**Example:**
+```markdown
+>> channel:clear()
+```
+
+---
+
+### `view`
+
+**Description:**
+Returns a list of all items currently in the channel without removing them.
+
+**Usage:**
+```markdown
+channel:view() -> [T]
+```
+
+**Parameters:**
+
+- `channel`: The channel to view.
+
+**Returns:**
+An array of items currently in the channel.
+
+**Example:**
+```markdown
+>> channel:view()
+= [1, 2, 3]
+```