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