Table of Contents

Interface IEventListener

Namespace
LfrlAnvil.Reactive
Assembly
LfrlAnvil.Reactive.Core.dll

Represents a type-erased event listener.

public interface IEventListener

Methods

OnDispose(DisposalSource)

Handler invoked during owner's disposal.

void OnDispose(DisposalSource source)

Parameters

source DisposalSource

DisposalSource that caused the invocation.

React(object?)

Handler invoked during reaction to an event.

void React(object? @event)

Parameters

event object

Published event.