rosettajs_dist_lib_rosetta_replicator.js
"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports._notes = void 0;
exports.replicator = replicator;
exports.replicatorReplicateHigh = replicatorReplicateHigh;
exports.replicatorReplicateNext = replicatorReplicateNext;
exports.replicatorReplicateSelected = replicatorReplicateSelected;
exports.replicatorReplicateWithServer = replicatorReplicateWithServer;
exports.replicatorSendMail = replicatorSendMail;
exports.replicatorSendReceiveMail = replicatorSendReceiveMail;
exports.replicatorStart = replicatorStart;
exports.replicatorStop = replicatorStop;
const tslib_1 = require("tslib");
/**
* @file Replicator
* @module replicator
* @category Replicator
*/
const notesc = tslib_1.__importStar(require("../notes/replicator"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands replicator
/**
* Displays the Replicator on the NotesĀ® workspace page.
* @throws {Error} no plans to implement
*/
function replicator() {
return notesc.Replicator();
}
/**
* Initiates replication of databases that have been assigned a priority of High.
* @throws {Error} no plans to implement
*/
function replicatorReplicateHigh() {
return notesc.ReplicatorReplicateHigh();
}
/**
* Stops replication of the currently replicating database and initiates
* replication of the next database selected for replication.
* @throws {Error} no plans to implement
*/
function replicatorReplicateNext() {
return notesc.ReplicatorReplicateNext();
}
/**
* Initiates replication of the selected database.
* @throws {Error} no plans to implement
*/
function replicatorReplicateSelected() {
return notesc.ReplicatorReplicateSelected();
}
/**
* Displays the "Replicate With Which Server" dialog box and initiates replication
* with the server you select.
* @throws {Error} no plans to implement
*/
function replicatorReplicateWithServer() {
return notesc.ReplicatorReplicateWithServer();
}
/**
* Sends local pending mail to the server.
* @throws {Error} no plans to implement
*/
function replicatorSendMail() {
return notesc.ReplicatorSendMail();
}
/**
* Initiates replication between the mail server and your local mail database.
* @throws {Error} no plans to implement
*/
function replicatorSendReceiveMail() {
return notesc.ReplicatorSendReceiveMail();
}
/**
* Initiates or resumes replication of the selected databases.
* @throws {Error} no plans to implement
*/
function replicatorStart() {
return notesc.ReplicatorStart();
}
/**
* Stops the current replication process.
* @throws {Error} no plans to implement
*/
function replicatorStop() {
return notesc.ReplicatorStop();
}
//# sourceMappingURL=replicator.js.map