@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.
6 lines • 496 B
TypeScript
import type { Driver } from "@ydbjs/core";
import type { TopicReader, TopicReaderOptions, TopicTxReader, TopicTxReaderOptions } from "./types.js";
export declare const createTopicReader: (driver: Driver, options: TopicReaderOptions) => TopicReader;
export type { TopicReaderOptions, TopicReader, TopicTxReaderOptions, TopicTxReader } from "./types.js";
export declare const createTopicTxReader: (driver: Driver, options: TopicTxReaderOptions) => TopicTxReader;
//# sourceMappingURL=index.d.ts.map