Interface IEventSource<T>
Represents a data stream signaling its elements by means of an event.
Namespace: System.Reactive
Assembly: System.Reactive.Interfaces.dll
Syntax
public interface IEventSource<out T>
Type Parameters
Name | Description |
---|---|
T | The type of the event data generated by the event. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
Events
| Improve this Doc View SourceOnNext
Event signaling the next element in the data stream.
Declaration
event Action<T> OnNext
Event Type
Type | Description |
---|---|
Action<T> |