 | IChannelMultiInputRecordReader Interface |
Interface used by multi input record readers that read data from a channel.
Namespace: Ookii.Jumbo.Jet.ChannelsAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic interface IChannelMultiInputRecordReader
Public Interface IChannelMultiInputRecordReader
public interface class IChannelMultiInputRecordReader
type IChannelMultiInputRecordReader = interface end
The IChannelMultiInputRecordReader type exposes the following members.
Properties | Name | Description |
---|
 | Channel |
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