Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 517 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 517 Bytes

async

A Go library for asynchronous programming.

It's quite an unusual implementation that coroutines do not exchange data directly. They just yield on awaiting events and resume on event notifications. Communications between coroutines are done by sending event notifications to each other. A coroutine can watch multiple events before yielding and an event notification can resume multiple coroutines.

Continue reading, or visit Go Reference if you are not there.