IEventSource<T> Interface

Represents a data stream signaling its elements by means of an event.

Namespace:  System.Reactive
Assembly:  System.Reactive (in System.Reactive.dll)

Syntax

'Declaration
Public Interface IEventSource(Of T)
'Usage
Dim instance As IEventSource(Of T)
public interface IEventSource<T>
generic<typename T>
public interface class IEventSource
type IEventSource<'T> =  interface end
JScript does not support generic types and methods.

Type Parameters

  • T
    The event argument type.

The IEventSource<T> type exposes the following members.

Events

  Name Description
Public event OnNext Raises the Next event signaling the next element in the data stream.

Top

See Also

Reference

System.Reactive Namespace