Interface IOperator
Represents an operator used for event processing.
Namespace: Reaqtive
Assembly: Reaqtive.Interfaces.dll
Syntax
public interface IOperator : IDisposable
Properties
Inputs
Gets the operator's inputs.
Declaration
IEnumerable<ISubscription> Inputs { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ISubscription> |
Methods
SetContext(IOperatorContext)
Sets the operator context on the operator.
Declaration
void SetContext(IOperatorContext context)
Parameters
Type | Name | Description |
---|---|---|
IOperatorContext | context | Operator context to set on the operator. |
Start()
Starts the operator.
Declaration
void Start()
Subscribe()
Initializes Inputs.
Declaration
void Subscribe()