Typed Message Passing between D Processes

Atila Neves via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Fri Jun 26 05:25:42 PDT 2015


On Thursday, 25 June 2015 at 14:04:23 UTC, Per Nordlöw wrote:
> Is there an alternative to
>
> http://dlang.org/phobos/std_process.html#.pipe
>
> that can be used to do _typed_ _message_ _passing_ between two 
> D processes with the same convenience as `send` and `receive` in
>
> std.concurrency
>
> ?
>
> Either in Phobos or in a third party library?

You'd have to implement your own IPC for that to work. You can 
always use TCP and serialise everything.

Atila


More information about the Digitalmars-d-learn mailing list