Alxandr / SpotiFire

A project to make a SpotifyClient in C#
http://nudoc.azurewebsites.net/SpotiFire
40 stars 19 forks source link

Add synchronization. #43

Closed Alxandr closed 10 years ago

Alxandr commented 11 years ago

Currently events are fired from SpotiFire on the ThreadPool. This might cause confusion for a lot of people and might break a lot of applications. All events should be fired on the SynchronizationContext (and if there is none, the default one should be used, which just routes calls to the ThreadPool).

Alxandr commented 10 years ago

I'm fairly certain this has been resolved with the new event-macro. Closing for now at least.