replicator.js

"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.replicatorStop = exports.replicatorStart = exports.replicatorSendReceiveMail = exports.replicatorSendMail = exports.replicatorReplicateWithServer = exports.replicatorReplicateSelected = exports.replicatorReplicateNext = exports.replicatorReplicateHigh = exports.replicator = exports._notes = void 0;
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();
}
exports.replicator = replicator;
/**
 * Initiates replication of databases that have been assigned a priority of High.
 * @throws {Error} no plans to implement
 */
function replicatorReplicateHigh() {
    return notesc.ReplicatorReplicateHigh();
}
exports.replicatorReplicateHigh = 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();
}
exports.replicatorReplicateNext = replicatorReplicateNext;
/**
 * Initiates replication of the selected database.
 * @throws {Error} no plans to implement
 */
function replicatorReplicateSelected() {
    return notesc.ReplicatorReplicateSelected();
}
exports.replicatorReplicateSelected = 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();
}
exports.replicatorReplicateWithServer = replicatorReplicateWithServer;
/**
 * Sends local pending mail to the server.
 * @throws {Error} no plans to implement
 */
function replicatorSendMail() {
    return notesc.ReplicatorSendMail();
}
exports.replicatorSendMail = replicatorSendMail;
/**
 * Initiates replication between the mail server and your local mail database.
 * @throws {Error} no plans to implement
 */
function replicatorSendReceiveMail() {
    return notesc.ReplicatorSendReceiveMail();
}
exports.replicatorSendReceiveMail = replicatorSendReceiveMail;
/**
 * Initiates or resumes replication of the selected databases.
 * @throws {Error} no plans to implement
 */
function replicatorStart() {
    return notesc.ReplicatorStart();
}
exports.replicatorStart = replicatorStart;
/**
 * Stops the current replication process.
 * @throws {Error} no plans to implement
 */
function replicatorStop() {
    return notesc.ReplicatorStop();
}
exports.replicatorStop = replicatorStop;
//# sourceMappingURL=replicator.js.map