Table of Contents

Interface IAsyncEventSource<TEvent>

Namespace
MonkeyLoader.Events
Assembly
MonkeyLoader.dll

Defines the interface for sources of a certain type of async events.

public interface IAsyncEventSource<out TEvent> where TEvent : AsyncEvent

Type Parameters

TEvent

The type of async events generated by this source.

Events

Dispatching

Needs to be invoked when an event is generated with a new instance of the async event.

event AsyncEventDispatching<out TEvent>? Dispatching

Event Type

AsyncEventDispatching<TEvent>