Struct dataflow::source::FileSourceReader[][src]

pub struct FileSourceReader {
    id: SourceInstanceId,
    receiver_stream: Receiver<Result<MessagePayload, Error>>,
    current_file_offset: FileOffset,
}
Expand description

Contains all information necessary to ingest data from file sources

Fields

id: SourceInstanceId

Unique source ID

receiver_stream: Receiver<Result<MessagePayload, Error>>

Receiver channel that ingests records

current_file_offset: FileOffset

Current File Offset. This corresponds to the offset of last processed message (initially 0 if no records have been processed)

Trait Implementations

Create a new source reader. Read more

Returns the next message available from the source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more