130 lines
3.5 KiB
JavaScript
130 lines
3.5 KiB
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Nlm4FreeAllRequest = exports.Nlm4NmLockRequest = exports.Nlm4UnshareRequest = exports.Nlm4ShareResponse = exports.Nlm4ShareRequest = exports.Nlm4ShareArgs = exports.Nlm4GrantedRequest = exports.Nlm4UnlockRequest = exports.Nlm4UnlockArgs = exports.Nlm4CancelRequest = exports.Nlm4CancelArgs = exports.Nlm4Response = exports.Nlm4LockRequest = exports.Nlm4LockArgs = exports.Nlm4TestResponse = exports.Nlm4TestDenied = exports.Nlm4TestRequest = exports.Nlm4TestArgs = void 0;
|
|
class Nlm4TestArgs {
|
|
constructor(cookie, exclusive, lock) {
|
|
this.cookie = cookie;
|
|
this.exclusive = exclusive;
|
|
this.lock = lock;
|
|
}
|
|
}
|
|
exports.Nlm4TestArgs = Nlm4TestArgs;
|
|
class Nlm4TestRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4TestRequest = Nlm4TestRequest;
|
|
class Nlm4TestDenied {
|
|
constructor(holder) {
|
|
this.holder = holder;
|
|
}
|
|
}
|
|
exports.Nlm4TestDenied = Nlm4TestDenied;
|
|
class Nlm4TestResponse {
|
|
constructor(cookie, stat, holder) {
|
|
this.cookie = cookie;
|
|
this.stat = stat;
|
|
this.holder = holder;
|
|
}
|
|
}
|
|
exports.Nlm4TestResponse = Nlm4TestResponse;
|
|
class Nlm4LockArgs {
|
|
constructor(cookie, block, exclusive, lock, reclaim, state) {
|
|
this.cookie = cookie;
|
|
this.block = block;
|
|
this.exclusive = exclusive;
|
|
this.lock = lock;
|
|
this.reclaim = reclaim;
|
|
this.state = state;
|
|
}
|
|
}
|
|
exports.Nlm4LockArgs = Nlm4LockArgs;
|
|
class Nlm4LockRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4LockRequest = Nlm4LockRequest;
|
|
class Nlm4Response {
|
|
constructor(cookie, stat) {
|
|
this.cookie = cookie;
|
|
this.stat = stat;
|
|
}
|
|
}
|
|
exports.Nlm4Response = Nlm4Response;
|
|
class Nlm4CancelArgs {
|
|
constructor(cookie, block, exclusive, lock) {
|
|
this.cookie = cookie;
|
|
this.block = block;
|
|
this.exclusive = exclusive;
|
|
this.lock = lock;
|
|
}
|
|
}
|
|
exports.Nlm4CancelArgs = Nlm4CancelArgs;
|
|
class Nlm4CancelRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4CancelRequest = Nlm4CancelRequest;
|
|
class Nlm4UnlockArgs {
|
|
constructor(cookie, lock) {
|
|
this.cookie = cookie;
|
|
this.lock = lock;
|
|
}
|
|
}
|
|
exports.Nlm4UnlockArgs = Nlm4UnlockArgs;
|
|
class Nlm4UnlockRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4UnlockRequest = Nlm4UnlockRequest;
|
|
class Nlm4GrantedRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4GrantedRequest = Nlm4GrantedRequest;
|
|
class Nlm4ShareArgs {
|
|
constructor(cookie, share, reclaim) {
|
|
this.cookie = cookie;
|
|
this.share = share;
|
|
this.reclaim = reclaim;
|
|
}
|
|
}
|
|
exports.Nlm4ShareArgs = Nlm4ShareArgs;
|
|
class Nlm4ShareRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4ShareRequest = Nlm4ShareRequest;
|
|
class Nlm4ShareResponse {
|
|
constructor(cookie, stat, sequence) {
|
|
this.cookie = cookie;
|
|
this.stat = stat;
|
|
this.sequence = sequence;
|
|
}
|
|
}
|
|
exports.Nlm4ShareResponse = Nlm4ShareResponse;
|
|
class Nlm4UnshareRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4UnshareRequest = Nlm4UnshareRequest;
|
|
class Nlm4NmLockRequest {
|
|
constructor(args) {
|
|
this.args = args;
|
|
}
|
|
}
|
|
exports.Nlm4NmLockRequest = Nlm4NmLockRequest;
|
|
class Nlm4FreeAllRequest {
|
|
constructor(notify) {
|
|
this.notify = notify;
|
|
}
|
|
}
|
|
exports.Nlm4FreeAllRequest = Nlm4FreeAllRequest;
|
|
//# sourceMappingURL=messages.js.map
|