hamok
Version:
Lightweight Distributed Object Storage on RAFT consensus algorithm
14 lines (13 loc) • 477 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StorageAppliedCommitNotification = void 0;
class StorageAppliedCommitNotification {
appliedCommitIndex;
sourceEndpointId;
constructor(appliedCommitIndex, sourceEndpointId) {
this.appliedCommitIndex = appliedCommitIndex;
this.sourceEndpointId = sourceEndpointId;
// empty
}
}
exports.StorageAppliedCommitNotification = StorageAppliedCommitNotification;