Click or drag to resize

IChannelMultiInputRecordReader Interface

Interface used by multi input record readers that read data from a channel.

Namespace:  Ookii.Jumbo.Jet.Channels
Assembly:  Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 2.0.0
Syntax
public interface IChannelMultiInputRecordReader

The IChannelMultiInputRecordReader type exposes the following members.

Properties
  NameDescription
Public propertyChannel
Gets or sets the input channel that this reader is reading from.
Top
Remarks

This interface can be used by multi input record readers that need to know what input channel they are reading from.

If a multi input record reader implements this interface, Jumbo Jet will set the Channel property after the record reader is created. The Channel property will only be set if the reader is reading from exactly one channel.

If the record reader also implements IConfigurable, NotifyConfigurationChanged will be called after the Channel property is set.

See Also