TimelyDataflow / timely-dataflow

A modular implementation of timely dataflow in Rust
MIT License
3.25k stars 272 forks source link

Make TCP communication fabric generic over network protocol #489

Closed benesch closed 1 year ago

benesch commented 1 year ago

This commit makes the communication fabric that was previously specific to TCP generic over the network protocol. Most practically this allows executing a timely computation over Unix domain sockets, which is useful in development, but in theory any network protocol that satisfies the new Stream trait could be used.

frankmcsherry commented 1 year ago

Thanks for the submit and review!