Member Junction
    Preparing search index...

    SOURCE seam — yields the record set in cursor-paginated batches. Implementations decide their own pagination strategy (offset vs. keyset); the cursor is opaque to the engine and round-tripped through the tracker for resume.

    interface IRecordSetSource {
        Describe(): SourceDescriptor;
        NextBatch(
            cursor: ProcessCursor,
            batchSize: number,
            contextUser: UserInfo,
            provider?: IMetadataProvider,
        ): Promise<RecordBatch>;
    }

    Implemented by

    Index

    Methods