UNPKG

@dtu-olp-2024/kafka-nocobase

Version:

A NocoBase plugin for Apache Kafka integration, supporting message publishing, topic management, and event-driven workflows. Built for the DTU GreenHope project.

16 lines (14 loc) 477 B
/** * Enum for isolation levels * @readonly * @enum {number} */ module.exports = { // Makes all records visible READ_UNCOMMITTED: 0, // non-transactional and COMMITTED transactional records are visible. It returns all data // from offsets smaller than the current LSO (last stable offset), and enables the inclusion of // the list of aborted transactions in the result, which allows consumers to discard ABORTED // transactional records READ_COMMITTED: 1, }