Thread overview
std.signals: Error: static assert: "Aliases to mutable thread-local data not allowed."
Jul 18, 2022
Bagomot
Jul 19, 2022
frame
Jul 21, 2022
Bagomot
July 18, 2022

Why can't I do it with std.signals? How the to do it if I can't create static event listeners?

public void addEventListener(T : EventListener)(T listener) {
   connect(&listener.watch);
}
July 19, 2022

On Monday, 18 July 2022 at 10:22:16 UTC, Bagomot wrote:

>

Why can't I do it with std.signals? How the to do it if I can't create static event listeners?

public void addEventListener(T : EventListener)(T listener) {
   connect(&listener.watch);
}

This error comes from somewhere else in your code by std.concurrency spawn(), spawnLinked() or send().

July 21, 2022
On Tuesday, 19 July 2022 at 05:24:55 UTC, frame wrote:
> On Monday, 18 July 2022 at 10:22:16 UTC, Bagomot wrote:
>> Why can't I do it with `std.signals`? How the to do it if I can't create static event listeners?
>> ```d
>> public void addEventListener(T : EventListener)(T listener) {
>>    connect(&listener.watch);
>> }
>> ```
>
> This error comes from somewhere else in your code by std.concurrency `spawn()`, `spawnLinked()` or `send()`.

Yes. Its my error, sorry.