|
|
|
|
|
by masklinn
1471 days ago
|
|
You can decode multiple values from a stream. In a language which focuses on concurrency correctness, the decoder would either be thread-safe (in which case you could use it as an input queue) or not be usable from multiple threads (in which case you’d clearly have to create the queue yourself). |
|