IRgfObserver<TArgs> Interface

Definition

Namespace: Recrovit.RecroGridFramework.Abstraction.Contracts.Services
Assembly: Recrovit.RecroGridFramework.Abstraction (in Recrovit.RecroGridFramework.Abstraction.dll) Version: 1.13.0.11213
C#
public interface IRgfObserver<in TArgs> : IObserver<TArgs>, 
	IDisposable
Implements
IDisposable, IObserver<TArgs>

Type Parameters

TArgs

Methods

DisposePerforms application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable)
OnCompletedNotifies the observer that the provider has finished sending push-based notifications.
(Inherited from IObserver<TArgs>)
OnErrorNotifies the observer that the provider has experienced an error condition.
(Inherited from IObserver<TArgs>)
OnNextProvides the observer with new data.
(Inherited from IObserver<TArgs>)
OnNextAsync 
Unsubscribe 

See Also