Click or drag to resize

PipelineOutputChannel Class

Represents the the channel between two pipelined tasks.
Inheritance Hierarchy
SystemObject
  Ookii.Jumbo.Jet.ChannelsPipelineOutputChannel

Namespace:  Ookii.Jumbo.Jet.Channels
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public sealed class PipelineOutputChannel : IOutputChannel

The PipelineOutputChannel type exposes the following members.

Constructors
  NameDescription
Public methodPipelineOutputChannel
Initializes a new instance of the PipelineOutputChannel class.
Top
Methods
  NameDescription
Public methodCreateRecordWriterT
Creates a record writer for the channel.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

Pipelined tasks are run in the same process, and each call to WriteRecord(T) will invoke the associated task's ProcessRecord(TInput, RecordWriterTOutput) method. Because of this, there is no associated input channel for this channel type.

See Also