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 { TX } from '../tx.js'; import type { TopicTxWriter, TopicWriter, TopicWriterOptions } from './types.js'; export declare const createTopicWriter: (driver: Driver, options: TopicWriterOptions) => TopicWriter; export declare const createTopicTxWriter: (tx: TX, driver: Driver, options: TopicWriterOptions) => TopicTxWriter; export type { TopicTxWriter, TopicWriter, TopicWriterOptions } from './types.js'; //# sourceMappingURL=index.d.ts.map