UNPKG

node-opcua-transport

Version:

pure nodejs OPCUA SDK - module transport

20 lines 723 B
"use strict"; /** * @module node-opcua-transport */ Object.defineProperty(exports, "__esModule", { value: true }); exports.defaultClientTransportFactory = void 0; const client_tcp_transport_1 = require("./client_tcp_transport"); /** * The default client-transport factory, which returns a {@link ClientTCP_transport}. * * This is the implicit factory used by {@link ClientSecureChannelLayer} when no * `transportFactory` option is provided, preserving the historical (Node-only) * behavior byte-for-byte. */ exports.defaultClientTransportFactory = { create(settings) { return new client_tcp_transport_1.ClientTCP_transport(settings); } }; //# sourceMappingURL=default_client_transport_factory.js.map