Class ConcurrentMemoryDestination

A destination in memory - it will store all data in a BlockingCollection<T> The BlockingCollection<T> allows you to access the data concurrently while rows are still written into the target. If you don't need to work with your data before the flow finishes, you can use the MemoryDestination which uses a regular List<T>.

Inheritance
object
DataFlowDestination<ExpandoObject>
MemoryDestination<ExpandoObject>
ConcurrentMemoryDestination
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class ConcurrentMemoryDestination : ConcurrentMemoryDestination<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

ConcurrentMemoryDestination()

Declaration
    public ConcurrentMemoryDestination()

Implements