Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 1x 1x 1x 1x 1x 1x 1x | import { SchemaRegistry } from "@kafkajs/confluent-schema-registry"; import { TxOutboxMessage } from "./tx-outbox"; export type TxOutboxMessageFactory = ReturnType<typeof TxOutboxMessageFactory>; export const TxOutboxMessageFactory = ({ registry, }: { registry: Pick<SchemaRegistry, "encode">; }) => ({ createOutboxMessage: async <K, V>({ key, value, headers, partition, timestamp, topic, keySchemaId, valueSchemaId, }: { key?: K; value: V; headers?: Record<string, string>; partition?: number; timestamp?: string; topic: string; keySchemaId: number; valueSchemaId: number; }): Promise<TxOutboxMessage> => { const keyP = key ? registry.encode(keySchemaId, key) : undefined; const valueP = registry.encode(valueSchemaId, value); const keyBinary = keyP ? await keyP : undefined; const valueBinary = await valueP; return { topic, key: keyBinary?.toString("base64"), value: valueBinary.toString("base64"), headers, partition, timestamp, isEvent: true }; }, }); |