Search Results for

    Show / Hide Table of Contents

    Class CrossJoinTransform<TLeftInput, TRightInput, TOutput>

    A dataflow worker with two input ports and one Output port, that performs a Cross Join on the two inputs.

    Note: Use the factory methods in CrossJoinTransformFactory to create instances of this class.

    This worker is fully blocking on the RightInput input port, and will buffer all its rows. Therefore, to conserve memory, link RightInput to the upstream output where the rows will consume the least amount of memory (i.e. the smallest numberOfRows * memoryPerRow).

    Inheritance
    Object
    WorkerParent
    WorkerBase
    WorkerBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>>
    JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>
    CrossJoinTransform<TLeftInput, TRightInput, TOutput>
    Implements
    IDisposeOnFinished
    Inherited Members
    JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>.Comparison
    JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>.LeftInput
    JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>.RightInput
    JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>.Output
    JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>.RunAsync()
    WorkerBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>>.AddCompletedCallback(Func<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, OutcomeStatus, Task<OutcomeStatus>>)
    WorkerBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>>.AddRanCallback(Func<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, OutcomeStatus, WorkerParentChildrenState, Task<OutcomeStatus>>)
    WorkerBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>>.AddStartingCallback(Func<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, Task<ProgressStatus>>)
    WorkerBase.AddCompletedCallback(Func<WorkerBase, OutcomeStatus, Task<OutcomeStatus>>)
    WorkerBase.AddRanCallback(Func<WorkerBase, OutcomeStatus, WorkerParentChildrenState, Task<OutcomeStatus>>)
    WorkerBase.AddStartingCallback(Func<WorkerBase, Task<ProgressStatus>>)
    WorkerBase.DefaultIsStartable()
    WorkerBase.ErroredPortErrorsWorkerProtected
    WorkerBase.ErrorOutputs
    WorkerBase.EscalateError
    WorkerBase.Inputs
    WorkerBase.IsStartable
    WorkerBase.Outputs
    WorkerBase.Parent
    WorkerBase.SucceededSequence<TLastWorker>(WorkerBase, WorkerBase, WorkerBase, WorkerBase, WorkerBase, TLastWorker)
    WorkerBase.SucceededSequence<TLastWorker>(WorkerBase, WorkerBase, WorkerBase, WorkerBase, TLastWorker)
    WorkerBase.SucceededSequence<TLastWorker>(WorkerBase, WorkerBase, WorkerBase, TLastWorker)
    WorkerBase.SucceededSequence<TLastWorker>(WorkerBase, WorkerBase, TLastWorker)
    WorkerBase.SucceededSequence<TLastWorker>(WorkerBase, TLastWorker)
    WorkerBase.SucceededSequence<TLastWorker>(TLastWorker)
    WorkerParent.AddChildCompletedCallback(Action<WorkerBase>)
    WorkerParent.AddStartingChildrenCallback(Func<WorkerParent, Task<ProgressStatus>>)
    WorkerParent.BytesPerRowBuffer
    WorkerParent.Children
    WorkerParent.DisposeOnFinished<TDisposable>(TDisposable)
    WorkerParent.GetDownstreamFactory<TInput>()
    WorkerParent.HasChildren
    WorkerParent.IsCanceled
    WorkerParent.IsCompleted
    WorkerParent.IsCreated
    WorkerParent.IsError
    WorkerParent.IsFailed
    WorkerParent.IsFatal
    WorkerParent.IsRunning
    WorkerParent.IsSucceeded
    WorkerParent.KeepChildrenLevels
    WorkerParent.Locator
    WorkerParent.LogFactory
    WorkerParent.Logger
    WorkerParent.MaxRunningChildren
    WorkerParent.Name
    WorkerParent.RemoveChildren()
    WorkerParent.RescheduleChildren()
    WorkerParent.RunAsync()
    WorkerParent.RunChildrenAsync(Boolean)
    WorkerParent.RunChildrenAsync()
    WorkerParent.Status
    WorkerParent.Item[String]
    WorkerParent.ToString()
    WorkerParent.WorkerSystem
    WorkerParent.DebugCommands
    WorkerParent.AggregateErrorOutputRows
    WorkerParent.AggregateOutputRows
    WorkerParent.AggregateWorkersCompleted
    WorkerParent.InstantCompleted
    WorkerParent.InstantCreated
    WorkerParent.InstantStarted
    WorkerParent.RunningDuration
    Namespace: actionETL
    Assembly: actionETL.dll
    Syntax
    public class CrossJoinTransform<TLeftInput, TRightInput, TOutput> : JoinMergeSortedTransformBase<CrossJoinTransform<TLeftInput, TRightInput, TOutput>, TLeftInput, TRightInput, TOutput>, IDisposeOnFinished where TLeftInput : class where TRightInput : class where TOutput : class, new()
    Type Parameters
    Name Description
    TLeftInput

    The type of each LeftInput row.

    TRightInput

    The type of each RightInput row.

    TOutput

    The type of each Output row.

    Implements

    IDisposeOnFinished

    See Also

    CrossJoinTransformFactory
    JoinMergeSortedTransformBase<TDerived, TLeftInput, TRightInput, TOutput>
    Dataflow Columns
    In This Article
    Back to top Copyright © 2023 Envobi Ltd