Delegate EventDelayedDelegate
Delegate to call when an event is processed later than the scheduler intended.
Namespace: Fibula.Scheduling.Contracts.Delegates
Assembly: Fibula.Scheduling.Contracts.dll
Syntax
public delegate bool EventDelayedDelegate(IEvent sender, TimeSpan delayTime);
Parameters
Type | Name | Description |
---|---|---|
IEvent | sender | The sender of the event processed event. |
System.TimeSpan | delayTime | The time by which to delay the event. |
Returns
Type | Description |
---|---|
System.Boolean | True if the event is successfully delayed, false otherwise. |