Daniel Tralamazza

Results 11 comments of Daniel Tralamazza

Can we have an "Advanced Options" tab?

maybe support URL encoded graph for the moment?

should this requirement be in the docs? @kris-jusiak

Avoid (or ban altogether) internal events. I solve this by creating interfaces and injecting them dependencies. Act on external events.

> > Avoid (or ban altogether) internal events. I solve this by creating interfaces and injecting them dependencies. Act on external events. > > Thanks @tralamazza! Do you have, by...

Glad I could help. This is the method we use in our project for dependencies w/ asynchronous calls, like your thread sleep/timeout example. Synchronous APIs are more problematic.

> @tralamazza why is that? Because you can create loops and stack overflows

@cppden thanks I know the queue trick :) but I do not suggest adding queues for the same reason (as internal events), easy to produce loops and hidden flows (we...

seems to be msvc specific?

How can we pass a `processEvent` to lambda and have it be executed outside the process loop (e.g. a timer event)? I know it's possible to do that using the...