/// <summary>
 /// Checks if an event is queued for handling.
 /// </summary>
 /// <param name="nsfEvent">The event in queustion.</param>
 /// <returns>True if the event is the in queue, otherwise false.</returns>
 public bool hasEvent(NSFEvent nsfEvent)
 {
     return(EventThread.hasEvent(nsfEvent));
 }
Beispiel #2
0
 /// <summary>
 /// Checks if an event is queued for processing.
 /// </summary>
 /// <param name="nsfEvent">The event in queustion.</param>
 /// <returns>True if the event is the in queue, otherwise false.</returns>
 protected bool hasEvent(NSFEvent nsfEvent)
 {
     return(EventThread.hasEvent(nsfEvent));
 }