Enum Mode
enum for specifying the waiting mode for event notifications
Namespace: FastEndpoints
Assembly: FastEndpoints.dll
Syntax
public enum Mode
Fields
| Name | Description |
|---|---|
| WaitForAll | return a Task that will complete only when all of the subscribers complete their work. HINT: exceptions can be captured by caller |
| WaitForAny | returns a Task that will complete when any of the subscribers complete their work WARNING: exceptions cannot be captured by caller |
| WaitForNone | returns an already completed Task (fire and forget) WARNING: exceptions cannot be captured by caller |