UNPKG

@ydbjs/topic

Version:

YDB Topics client for publish-subscribe messaging. Provides at-least-once delivery, exactly-once publishing, FIFO guarantees, and scalable message processing for unstructured data.

7 lines 494 B
import type { Driver } from '@ydbjs/core'; import type { TopicReader, TopicReaderOptions, TopicTxReader } from './types.js'; import type { TX } from '../tx.js'; export declare const createTopicReader: (driver: Driver, options: TopicReaderOptions) => TopicReader; export declare const createTopicTxReader: (tx: TX, driver: Driver, options: TopicReaderOptions) => TopicTxReader; export type { TopicReaderOptions, TopicReader, TopicTxReader } from './types.js'; //# sourceMappingURL=index.d.ts.map