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.

15 lines 638 B
import { create } from '@bufbuild/protobuf'; import { StreamReadMessage_FromClientSchema, } from '@ydbjs/api/topic'; export let _send_start_partition_session_response = function send_start_partition_session_response(ctx) { ctx.queue.push(create(StreamReadMessage_FromClientSchema, { clientMessage: { case: 'startPartitionSessionResponse', value: { partitionSessionId: ctx.partitionSessionId, readOffset: ctx.readOffset, commitOffset: ctx.commitOffset, }, }, }), 0); }; //# sourceMappingURL=_start_partition_session_response.js.map