You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When one subscribes asynchronously to a custom event using the subscribe_async function, it listens to all events happening on the given event-loop, instead of limiting to the given event(s). I think the problem is that in the subscribe_async implementation, the EspEvent struct is supplied as the generic type for the subscribe call, which by default listens to all events. Shouldn't that use the given D generic that holds the event one has specified?
The text was updated successfully, but these errors were encountered:
When one subscribes asynchronously to a custom event using the
subscribe_async
function, it listens to all events happening on the given event-loop, instead of limiting to the given event(s). I think the problem is that in thesubscribe_async
implementation, theEspEvent
struct is supplied as the generic type for thesubscribe
call, which by default listens to all events. Shouldn't that use the givenD
generic that holds the event one has specified?The text was updated successfully, but these errors were encountered: