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
Though I like events, I have some trouble implementing them. The event handlers are not guaranteed to fire in the same thread as they were originally installed (because they would be called in the background Thread). This opens up problems that I don't want to handle.
Maybe this will be something I can implement when looking at observables.
Though I like events, I have some trouble implementing them. The event handlers are not guaranteed to fire in the same thread as they were originally installed (because they would be called in the background Thread). This opens up problems that I don't want to handle.
Maybe this will be something I can implement when looking at observables.
If you don't go the observables route, you can always force them to fire from the thread they were installed in via SynchronizationContext and PostMessage.
I would really like to see events like:
Conntected
Disconnected
etc.
The text was updated successfully, but these errors were encountered: