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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | 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 11x 11x 41x 41x 11x 11x 41x 41x 11x 11x 41x 41x 41x 41x 41x 41x 41x 41x 41x 41x 2x 2x 41x 41x 2x 2x 41x 41x 2x 2x 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 'Locator.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_UserException from "../Ice/UserException.js"; import * as Ice_Value from "../Ice/Value.js"; import { Ice as Ice___Identity } from "./Identity.js" const Ice = { ...Ice_DefaultSliceLoader, ...Ice_Object, ...Ice_ObjectPrx, ...Ice_Operation, ...Ice_StreamHelpers, ...Ice_TypeRegistry, ...Ice_UserException, ...Ice_Value, ...Ice___Identity, }; export { Ice }; /** * The exception that is thrown by a {@link Ice.LocatorPrx} implementation when it cannot find an object adapter with the * provided adapter ID. */ Ice.AdapterNotFoundException = class extends Ice.UserException { static get _parent() { return Ice.UserException; } static get _ice_id() { return "::Ice::AdapterNotFoundException"; } _mostDerivedType() { return Ice.AdapterNotFoundException; } }; Ice.defineClass(Ice.AdapterNotFoundException, "::Ice::AdapterNotFoundException"); /** * The exception that is thrown by a {@link Ice.LocatorPrx} implementation when it cannot find an object with the provided * identity. */ Ice.ObjectNotFoundException = class extends Ice.UserException { static get _parent() { return Ice.UserException; } static get _ice_id() { return "::Ice::ObjectNotFoundException"; } _mostDerivedType() { return Ice.ObjectNotFoundException; } }; Ice.defineClass(Ice.ObjectNotFoundException, "::Ice::ObjectNotFoundException"); const iceC_Ice_Locator_ids = [ "::Ice::Locator", "::Ice::Object" ]; /** * Client applications use the Locator object to resolve Ice indirect proxies. This object also allows * server applications to retrieve a proxy to the associated {@link Ice.LocatorRegistryPrx} object where they can register * their object adapters. */ Ice.Locator = class extends Ice.Object {}; /** * Client applications use the Locator object to resolve Ice indirect proxies. This object also allows * server applications to retrieve a proxy to the associated {@link Ice.LocatorRegistryPrx} object where they can register * their object adapters. */ Ice.LocatorPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Ice.LocatorPrx", Ice.LocatorPrx); Ice.defineOperations( Ice.Locator, Ice.LocatorPrx, iceC_Ice_Locator_ids, "::Ice::Locator", { "findObjectById": [, 2, , [8], [[Ice.Identity]], , [ Ice.ObjectNotFoundException ], , ], "findAdapterById": [, 2, , [8], [[7]], , [ Ice.AdapterNotFoundException ], , ], "getRegistry": [, 2, , ["Ice.LocatorRegistryPrx"], , , , , ] }); const iceC_Ice_LocatorFinder_ids = [ "::Ice::LocatorFinder", "::Ice::Object" ]; /** * Provides access to a {@link Ice.LocatorPrx} object via a fixed identity. * A LocatorFinder is always registered with identity `Ice/LocatorFinder`. This allows clients to obtain the * associated Locator proxy with just the endpoint information of the object. For example, you can use the * LocatorFinder proxy `Ice/LocatorFinder:tcp -h somehost -p 4061` to get the Locator proxy * `MyIceGrid/Locator:tcp -h somehost -p 4061`. */ Ice.LocatorFinder = class extends Ice.Object {}; /** * Provides access to a {@link Ice.LocatorPrx} object via a fixed identity. * A LocatorFinder is always registered with identity `Ice/LocatorFinder`. This allows clients to obtain the * associated Locator proxy with just the endpoint information of the object. For example, you can use the * LocatorFinder proxy `Ice/LocatorFinder:tcp -h somehost -p 4061` to get the Locator proxy * `MyIceGrid/Locator:tcp -h somehost -p 4061`. */ Ice.LocatorFinderPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Ice.LocatorFinderPrx", Ice.LocatorFinderPrx); Ice.defineOperations( Ice.LocatorFinder, Ice.LocatorFinderPrx, iceC_Ice_LocatorFinder_ids, "::Ice::LocatorFinder", { "getLocator": [, 0, , ["Ice.LocatorPrx"], , , , , ] }); |