Class ReactiveQbserverBase<T>
Base class for the implementation of observers represented by an expression tree.
Implements
System.IObserver<T>
Inherited Members
Namespace: Reaqtor
Assembly: Reaqtor.Expressions.Core.dll
Syntax
public abstract class ReactiveQbserverBase<T> : ReactiveObserverBase<T>, IReactiveQbserver<T>, IReactiveObserver<T>, IObserver<T>, IReactiveQbserver, IReactiveExpressible, IExpressible
Type Parameters
Name | Description |
---|---|
T | Type of the data received by the observer. |
Constructors
ReactiveQbserverBase(IReactiveQueryProvider)
Creates a new observer represented by an expression tree, using the specified associated query provider.
Declaration
protected ReactiveQbserverBase(IReactiveQueryProvider provider)
Parameters
Type | Name | Description |
---|---|---|
IReactiveQueryProvider | provider | Query provider associated with the observer. |
Properties
ElementType
Gets the type of the data received by the observer.
Declaration
public Type ElementType { get; }
Property Value
Type | Description |
---|---|
System.Type |
Expression
Gets the expression tree representing the observer.
Declaration
public abstract Expression Expression { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.Expression |
Provider
Gets the query provider that is associated with the observer.
Declaration
public IReactiveQueryProvider Provider { get; }
Property Value
Type | Description |
---|---|
IReactiveQueryProvider |
Implements
System.IObserver<>