當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript OPCUAServer.shutdownChannels方法代碼示例

本文整理匯總了TypeScript中node-opcua-server.OPCUAServer.shutdownChannels方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript OPCUAServer.shutdownChannels方法的具體用法?TypeScript OPCUAServer.shutdownChannels怎麽用?TypeScript OPCUAServer.shutdownChannels使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在node-opcua-server.OPCUAServer的用法示例。


在下文中一共展示了OPCUAServer.shutdownChannels方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: simulateCertificateAndPrivateKeyChange

    async function simulateCertificateAndPrivateKeyChange(server: OPCUAServer) {
        const _server = server as any as OPCUAServerPartial;

        // create a new key pair
        const { certificate, privateKey } = await produceCertificateAndPrivateKey();

        _server.$$privateKeyPEM = toPem(privateKey, "RSA PRIVATE KEY");
        _server.$$certificateChain = certificate;
        _server.$$certificate = undefined;
        await server.suspendEndPoints();
        await server.shutdownChannels();
        await server.resumeEndPoints();

    }
開發者ID:node-opcua,項目名稱:node-opcua,代碼行數:14,代碼來源:test_server_with_push_certificate_management.ts

示例2: setTimeout

    setTimeout(async () => {
        try {
            debugLog(chalk.yellow(" onCertificateChange => shutting down channels"));
            await server.shutdownChannels();
            debugLog(chalk.yellow(" onCertificateChange => channels shut down"));

            debugLog(chalk.yellow(" onCertificateChange => resuming end points"));
            await server.resumeEndPoints();
            debugLog(chalk.yellow(" onCertificateChange => end points resumed"));

            debugLog(chalk.yellow("channels have been closed -> client should reconnect "));

        } catch (err) {
            // tslint:disable:no-console
            errorLog("Error in CertificateChanged handler ", err.message);
            debugLog("err = ", err);
        }
    }, 2000);
開發者ID:node-opcua,項目名稱:node-opcua,代碼行數:18,代碼來源:install_push_certitifate_management.ts


注:本文中的node-opcua-server.OPCUAServer.shutdownChannels方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。