@rimbu/channel
v0.3.1
Published
Channel implementation for TypeScript akin to Go Channels
Downloads
14
Maintainers
Readme
@rimbu/channel
This package provides various channel implementation in the spirit of Go to allow synchronous or buffered one-to-one communication in an asynchronous context. The Channel
offers communication between asynchronous processes in the same thread. CrossChannel
consist of pairs of channels that allow different types of messages for sending and receiving. RemoteChannel
offers communication between (worker) threads. RemoteObject
offers a way to interact with a remote API/object as though it is available locally over a channel. RemoteChannelServer
and RemoteChannelClient
allow easy cross-thread creation of new channels. Finally, this package offers various cross-process synchronization utilities like Mutex
, Semaphore
and WaitGroup
.
For complete documentation please visit the Rimbu Docs, or directly see the Rimbu Core API Docs.
Installation
Compabitity
Yarn / NPM / Bun
To install this package:
For yarn
:
yarn add @rimbu/channel
For npm
:
npm i @rimbu/channel
For bun
:
bun add @rimbu/channel
Deno
For Deno, the following approach is recommended:
In the root folder of your project, create or edit a file called import_map.json
with the following contents (where you should replace x.y.z
with the desired version of Rimbu):
{
"imports": {
"@rimbu/": "https://deno.land/x/[email protected]/"
}
}
Note: The trailing slashes are important!
In this way you can use relative imports from Rimbu in your code, like so:
import { Channel } from '@rimbu/channel/mod.ts';
Note that for sub-packages, due to conversion limitations it is needed to import the index.ts
instead of mod.ts
, like so:
import { Channel } from '@rimbu/channel/custom/index.ts';
To run your script (let's assume the entry point is in src/main.ts
):
deno run --import-map import_map.json src/main.ts
Usage
import { Channel } from '@rimbu/channel';
async function produce(ch: Channel.Write<number>) {
for (let i = 0; i < 6; i++) {
console.log('sending', i);
await ch.send(i);
console.log('sent', i);
}
ch.close();
}
async function consume(ch: Channel.Read<number>) {
let sum = 0;
while (!ch.isExhausted) {
console.log('receiving');
const value = await ch.receive();
console.log('received', value);
sum += value;
}
console.log({ sum });
}
const channel = Channel.create<number>();
produce(channel);
consume(channel);
Author
Contributing
Feel very welcome to contribute to further improve Rimbu. Please read our Contributing guide.
Contributors
Made with contributors-img.
License
Licensed under the MIT License, Copyright © 2020-present Arvid Nicolaas.
See LICENSE for more information.