Class LazyBalancingStrategy
Denotes the strategy to lazily balance a chunk collection
Implements
Inherited Members
Namespace: NMF.Expressions.Linq
Assembly: NMF.Expressions.Chunk.dll
Syntax
public sealed class LazyBalancingStrategy : IChunkBalancingStrategyProvider
Remarks
Lazy in this context means that elements are only reassigned to chunks when a chunk can be saved
Fields
| Edit this page View SourceInstance
The static instance
Declaration
public static readonly LazyBalancingStrategy Instance
Field Value
Type | Description |
---|---|
LazyBalancingStrategy |
Methods
| Edit this page View SourceCreateStrategy<T, TChunk>(IObservableChunk<T, TChunk>)
Create a strategy for the given observable chunk collection
Declaration
public IChunkBalancingStrategy<T, TChunk> CreateStrategy<T, TChunk>(IObservableChunk<T, TChunk> observableChunk)
Parameters
Type | Name | Description |
---|---|---|
IObservableChunk<T, TChunk> | observableChunk | The observable chunk collection |
Returns
Type | Description |
---|---|
IChunkBalancingStrategy<T, TChunk> | A chunk balancing strategy |
Type Parameters
Name | Description |
---|---|
T | The type of items |
TChunk | The type of the chunks |