Class ReactiveQubscriptionBase
Base class for the implementation of subscriptions represented by an expression tree.
Implements
System.IDisposable
Inherited Members
Namespace: Reaqtor
Assembly: Reaqtor.Expressions.Core.dll
Syntax
public abstract class ReactiveQubscriptionBase : ReactiveSubscriptionBase, IReactiveQubscription, IReactiveSubscription, IDisposable, IReactiveExpressible, IExpressible
Constructors
ReactiveQubscriptionBase(IReactiveQueryProvider)
Creates a new subscription represented by an expression tree, using the specified associated query provider.
Declaration
protected ReactiveQubscriptionBase(IReactiveQueryProvider provider)
Parameters
Type | Name | Description |
---|---|---|
IReactiveQueryProvider | provider | Query provider associated with the observable. |
Properties
Expression
Gets the expression tree representing the subscription.
Declaration
public abstract Expression Expression { get; }
Property Value
Type | Description |
---|---|
System.Linq.Expressions.Expression |
Provider
Gets the query provider that is associated with the subscription.
Declaration
public IReactiveQueryProvider Provider { get; }
Property Value
Type | Description |
---|---|
IReactiveQueryProvider |
Implements
System.IDisposable