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: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
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 methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns 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