Class ObservableAggregate<TSource, TAccumulator, TResult>
Denotes an abstract class for an aggregator incrementalization
Inherited Members
Namespace: NMF.Expressions.Linq
Assembly: NMF.Expressions.Linq.dll
Syntax
public abstract class ObservableAggregate<TSource, TAccumulator, TResult> : NotifyValue<TResult>, INotifyValue<TResult>, INotifiable, IDisposable, ISuccessorList, IValueChangedNotificationResult<TResult>, IValueChangedNotificationResult, INotificationResult
Type Parameters
Name | Description |
---|---|
TSource | The source type of elements |
TAccumulator | The accumulator used |
TResult | The result type |
Constructors
| Edit this page View SourceObservableAggregate(INotifyEnumerable<TSource>, TAccumulator)
Creates a new instance
Declaration
protected ObservableAggregate(INotifyEnumerable<TSource> source, TAccumulator accumulator)
Parameters
Type | Name | Description |
---|---|---|
INotifyEnumerable<TSource> | source | The incrementalized source collection |
TAccumulator | accumulator | The initial value for the accumulator |
Exceptions
Type | Condition |
---|---|
ArgumentNullException | Thrown if source is null |
Properties
| Edit this page View SourceAccumulator
Gets the current accumulator
Declaration
protected TAccumulator Accumulator { get; set; }
Property Value
Type | Description |
---|---|
TAccumulator |
Dependencies
Nodes that notify this node.
Declaration
public override IEnumerable<INotifiable> Dependencies { get; }
Property Value
Type | Description |
---|---|
IEnumerable<INotifiable> |
Overrides
| Edit this page View SourceSource
Gets the source collection
Declaration
protected INotifyEnumerable<TSource> Source { get; }
Property Value
Type | Description |
---|---|
INotifyEnumerable<TSource> |
Methods
| Edit this page View SourceAddItem(TSource)
Adds the given item
Declaration
protected abstract void AddItem(TSource item)
Parameters
Type | Name | Description |
---|---|---|
TSource | item | the item |
Attach()
Declaration
protected override void Attach()
Overrides
| Edit this page View SourceDetach()
Declaration
protected override void Detach()
Overrides
| Edit this page View SourceNotify(IList<INotificationResult>)
Gets called when one of the dependencies signals a notification.
Declaration
public override INotificationResult Notify(IList<INotificationResult> sources)
Parameters
Type | Name | Description |
---|---|---|
IList<INotificationResult> | sources | Contains information about what triggered this notification. |
Returns
Type | Description |
---|---|
INotificationResult | An object describing the changes that happened in this notification. |
Overrides
| Edit this page View SourceRemoveItem(TSource)
Removes the given item
Declaration
protected abstract void RemoveItem(TSource item)
Parameters
Type | Name | Description |
---|---|---|
TSource | item | the item |
ResetAccumulator()
Resets the accumulator
Declaration
protected abstract void ResetAccumulator()