channo
v0.1.1
Published
A channel library for Deno that provides Rust-like channels backed by [async-cell](https://github.com/zebp/async-cell).
Downloads
4
Readme
channo
A channel library for Deno that provides Rust-like channels backed by async-cell.
Example
import { Channel } from "https://deno.land/x/channo/mod.ts";
const printerChannel = new Channel();
async function listenForMessages() {
for await (const message of printerChannel.stream()) {
console.log(message);
}
}
// Spawns a promise to listen for messages pushed to the channel.
listenForMessages();
printerChannel.push("Hello, world!");
// Sleep for 100ms to allow time for the listener to process the messages.
await new Promise((resolve) => setTimeout(resolve, 100));