blob: 3a37396785dbfbcb73cefa7661a68ff0dfc65f12 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
NAME
Join Python - Join-calculus for Python 3
DESCRIPTION
This library provides join-calculus to Python 3, with some extensions:
* concurrently(f...) runs a set of functions concurrently and
joins with all of them.
* Signals have join() which joins with the signal and returns
its return (signals do not need to be void.)
* The return of fragments are returned when fetching.
RATIONALE
Join-calculus provides clean ways to perform asynchronous tasks.
SEE ALSO
python(1), https://en.wikipedia.org/wiki/Join-calculus
Full documentation available locally via: info '(join-python)'
|