I'm writing a library that is firing events. This library starts a second thread that is connecting to a server and listens for messages (blocking calls, reason for the second thread).
public virtual event LogEventHandler EntryReceived;
protected virtual void ReceiveEntry(ILogEntry entry)
{
if (EntryReceived != null)
EntryReceived(this, new LogEventArgs() { Entry = entry });
}
When a message is received from the server, it is firing an event :
ReceiveEntry(entry);
I'd like the end developper not to have to think about the InvokeRequired/Invoke snippet in his event handler. How could I ensure to fire my event on the "parent" thread (which I know is the same than the thread that did instantiate my class) ?
For that purpose have some winforms elements a property called
SynchronizingObject
. This property is of type ISynchronizeInvoke which has the needed methods to execute the call within the UI thread.In your code you check this property for nullity and if it is set you use it:
The user of the library just has to put in a Control or a Form into that property: