Thread overview
Communicating between vibe.d's worker tasks
Nov 23, 2017
Nordlöw
Nov 23, 2017
Nordlöw
Nov 23, 2017
Nordlöw
Nov 23, 2017
Timoses
November 23, 2017
I'm looking at

http://vibed.org/api/vibe.core.concurrency/makeIsolated

which is a great idea for safe inter-thread communication.

Are there any more usage examples for vibe's worker tasks that show how to send instances of `Isolated` to an existing such worker task via some low-latency (non-locking) channel-like communication structure?
November 23, 2017
On Thursday, 23 November 2017 at 10:15:26 UTC, Nordlöw wrote:
> I'm looking at
>
> http://vibed.org/api/vibe.core.concurrency/makeIsolated

Further, what does "weakly isolated" mean here

http://vibed.org/api/vibe.core.core/runWorkerTask

?
November 23, 2017
On Thursday, 23 November 2017 at 10:15:26 UTC, Nordlöw wrote:
> I'm looking at
>
> http://vibed.org/api/vibe.core.concurrency/makeIsolated
>
> which is a great idea for safe inter-thread communication.
>
> Are there any more usage examples for vibe's worker tasks that show how to send instances of `Isolated` to an existing such worker task via some low-latency (non-locking) channel-like communication structure?

I guess

http://vibed.org/api/vibe.core.concurrency/send

void send(ARGS...) (
  Task task,
  ARGS args
);

void send(ARGS...) (
  Tid tid,
  ARGS args
);

is what I'm looking for.

Why aren't `ARGS` restricted to be instances of `Isolated`?

Further, shouldn't a trait `isIsolated` be defined and reused here and eventually moved into std.traits alongside `hasAliasing` and `hasIndirections`?
November 23, 2017
On Thursday, 23 November 2017 at 10:15:26 UTC, Nordlöw wrote:
> I'm looking at
>
> http://vibed.org/api/vibe.core.concurrency/makeIsolated
>
> which is a great idea for safe inter-thread communication.
>
> Are there any more usage examples for vibe's worker tasks that show how to send instances of `Isolated` to an existing such worker task via some low-latency (non-locking) channel-like communication structure?

You might wanna search or as the question on these forums as well:

vibe.d discussion - RejectedSoftware Forums
http://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/