Table of Contents

Interface ICancelableAsyncEventHandler<TEvent>

Namespace
MonkeyLoader.Events
Assembly
MonkeyLoader.dll

Defines the interface for async event handlers that support cancelation.

public interface ICancelableAsyncEventHandler<in TEvent> : IPrioritizable where TEvent : CancelableAsyncEvent

Type Parameters

TEvent

The type of cancelable async events handled.

Inherited Members

Properties

SkipCanceled

Gets whether this handler should be skipped for async events that have been canceled by a previous async event handler.

bool SkipCanceled { get; }

Property Value

bool

Methods

Handle(TEvent)

Handles the given cancelable async event based on its data.

Task Handle(TEvent eventData)

Parameters

eventData TEvent

An object containing all the relevant information for the async event.

Returns

Task

Remarks

When this method sets eventData.Canceled = true, the default action should be prevented from happening and further async event handlers may be skipped.