I wonder how the C++ sender/receiver concurrent computation model compares to Hoare's CSP (communicating sequential processes) or its incarnation OCCAM.

Is there a channel abstraction or are connections implicit by combination?
#Cpp #SenderReceiver

@PeterSommerlad Occam's razor comes to my mind...
@PeterSommerlad I'm not a CSP expert, but the C++ analog of a "channel" (a named path along which causality flows) would be a scheduler, from what I understand.