Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x | // Copyright (c) ZeroC, Inc. // slice2js version 3.8.0-alpha.0 // <auto-generated>Generated from Slice file 'Router.ice'.</auto-generated> /* eslint-disable */ /* jshint ignore: start */ import * as Ice_DefaultSliceLoader from "../Ice/DefaultSliceLoader.js"; import * as Ice_Object from "../Ice/Object.js"; import * as Ice_ObjectPrx from "../Ice/ObjectPrx.js"; import * as Ice_Operation from "../Ice/Operation.js"; import * as Ice_StreamHelpers from "../Ice/StreamHelpers.js"; import * as Ice_TypeRegistry from "../Ice/TypeRegistry.js"; import * as Ice_Value from "../Ice/Value.js"; import { Ice as Ice___BuiltinSequences } from "./BuiltinSequences.js" const Ice = { ...Ice_DefaultSliceLoader, ...Ice_Object, ...Ice_ObjectPrx, ...Ice_Operation, ...Ice_StreamHelpers, ...Ice_TypeRegistry, ...Ice_Value, ...Ice___BuiltinSequences, }; export { Ice }; const iceC_Ice_Router_ids = [ "::Ice::Object", "::Ice::Router" ]; /** * Represents an intermediary object that routes requests and replies between clients and Ice objects that are not * directly reachable from these clients. */ Ice.Router = class extends Ice.Object {}; /** * Represents an intermediary object that routes requests and replies between clients and Ice objects that are not * directly reachable from these clients. */ Ice.RouterPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Ice.RouterPrx", Ice.RouterPrx); Ice.defineOperations( Ice.Router, Ice.RouterPrx, iceC_Ice_Router_ids, "::Ice::Router", { "getClientProxy": [, 2, , [8], , [[1, , 1]], , , ], "getServerProxy": [, 2, , [8], , , , , ], "addProxies": [, 2, , [Ice.ObjectProxySeqHelper], [[Ice.ObjectProxySeqHelper]], , , , ] }); const iceC_Ice_RouterFinder_ids = [ "::Ice::Object", "::Ice::RouterFinder" ]; /** * Provides access to a {@link Ice.RouterPrx} object via a fixed identity. * A RouterFinder is always registered with identity `Ice/RouterFinder`. This allows clients to obtain the * associated Router proxy with just the endpoint information of the object. For example, you can use the * RouterFinder proxy `Ice/RouterFinder:tcp -h somehost -p 4061` to get the Router proxy * `MyGlacier2/Router:tcp -h somehost -p 4061`. */ Ice.RouterFinder = class extends Ice.Object {}; /** * Provides access to a {@link Ice.RouterPrx} object via a fixed identity. * A RouterFinder is always registered with identity `Ice/RouterFinder`. This allows clients to obtain the * associated Router proxy with just the endpoint information of the object. For example, you can use the * RouterFinder proxy `Ice/RouterFinder:tcp -h somehost -p 4061` to get the Router proxy * `MyGlacier2/Router:tcp -h somehost -p 4061`. */ Ice.RouterFinderPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Ice.RouterFinderPrx", Ice.RouterFinderPrx); Ice.defineOperations( Ice.RouterFinder, Ice.RouterFinderPrx, iceC_Ice_RouterFinder_ids, "::Ice::RouterFinder", { "getRouter": [, 0, , ["Ice.RouterPrx"], , , , , ] }); |