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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | 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 1x 1x 1x 41x 41x 1x 1x 41x 41x 1x 1x 41x 41x 1x 1x 41x 41x 41x 41x 1x 1x 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 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 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 'Session.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____Ice_BuiltinSequences } from "../Ice/BuiltinSequences.js" import { Ice as Ice____Ice_Identity } from "../Ice/Identity.js" const Ice = { ...Ice_DefaultSliceLoader, ...Ice_Object, ...Ice_ObjectPrx, ...Ice_Operation, ...Ice_StreamHelpers, ...Ice_TypeRegistry, ...Ice_UserException, ...Ice_Value, ...Ice____Ice_BuiltinSequences, ...Ice____Ice_Identity, }; import { Glacier2 as Glacier2___SSLInfo, } from "./SSLInfo.js" const Glacier2 = { ...Glacier2___SSLInfo, }; export { Glacier2 }; /** * The exception that is thrown when an attempt to create a new session fails. */ Glacier2.CannotCreateSessionException = class extends Ice.UserException { constructor(reason = "") { super(); this.reason = reason; } static get _parent() { return Ice.UserException; } static get _ice_id() { return "::Glacier2::CannotCreateSessionException"; } _mostDerivedType() { return Glacier2.CannotCreateSessionException; } _writeMemberImpl(ostr) { ostr.writeString(this.reason); } _readMemberImpl(istr) { this.reason = istr.readString(); } }; Ice.defineClass(Glacier2.CannotCreateSessionException, "::Glacier2::CannotCreateSessionException"); const iceC_Glacier2_Session_ids = [ "::Glacier2::Session", "::Ice::Object" ]; /** * Represents a session between a client application and the Glacier2 router. With Glacier2, the lifetime of a * session is tied to the Ice connection between the client and the router: the session is destroyed when the * connection is closed. * @see Router * @see SessionManager */ Glacier2.Session = class extends Ice.Object {}; /** * Represents a session between a client application and the Glacier2 router. With Glacier2, the lifetime of a * session is tied to the Ice connection between the client and the router: the session is destroyed when the * connection is closed. * @see Router * @see SessionManager */ Glacier2.SessionPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.SessionPrx", Glacier2.SessionPrx); Ice.defineOperations( Glacier2.Session, Glacier2.SessionPrx, iceC_Glacier2_Session_ids, "::Glacier2::Session", { "destroy": [, 0, , , , , , , ] }); const iceC_Glacier2_StringSet_ids = [ "::Glacier2::StringSet", "::Ice::Object" ]; /** * Manages a set of constraints on a {@link Glacier2.SessionPrx}. * @see SessionControl */ Glacier2.StringSet = class extends Ice.Object {}; /** * Manages a set of constraints on a {@link Glacier2.SessionPrx}. * @see SessionControl */ Glacier2.StringSetPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.StringSetPrx", Glacier2.StringSetPrx); Ice.defineOperations( Glacier2.StringSet, Glacier2.StringSetPrx, iceC_Glacier2_StringSet_ids, "::Glacier2::StringSet", { "add": [, 2, , , [[Ice.StringSeqHelper]], , , , ], "remove": [, 2, , , [[Ice.StringSeqHelper]], , , , ], "get": [, 2, , [Ice.StringSeqHelper], , , , , ] }); const iceC_Glacier2_IdentitySet_ids = [ "::Glacier2::IdentitySet", "::Ice::Object" ]; /** * Manages a set of object identity constraints on a {@link Glacier2.SessionPrx}. * @see SessionControl */ Glacier2.IdentitySet = class extends Ice.Object {}; /** * Manages a set of object identity constraints on a {@link Glacier2.SessionPrx}. * @see SessionControl */ Glacier2.IdentitySetPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.IdentitySetPrx", Glacier2.IdentitySetPrx); Ice.defineOperations( Glacier2.IdentitySet, Glacier2.IdentitySetPrx, iceC_Glacier2_IdentitySet_ids, "::Glacier2::IdentitySet", { "add": [, 2, , , [[Ice.IdentitySeqHelper]], , , , ], "remove": [, 2, , , [[Ice.IdentitySeqHelper]], , , , ], "get": [, 2, , [Ice.IdentitySeqHelper], , , , , ] }); const iceC_Glacier2_SessionControl_ids = [ "::Glacier2::SessionControl", "::Ice::Object" ]; /** * Represents a router-provided object that allows an application-provided session manager to configure the * routing constraints for a session. * @see SessionManager */ Glacier2.SessionControl = class extends Ice.Object {}; /** * Represents a router-provided object that allows an application-provided session manager to configure the * routing constraints for a session. * @see SessionManager */ Glacier2.SessionControlPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.SessionControlPrx", Glacier2.SessionControlPrx); Ice.defineOperations( Glacier2.SessionControl, Glacier2.SessionControlPrx, iceC_Glacier2_SessionControl_ids, "::Glacier2::SessionControl", { "categories": [, 0, , ["Glacier2.StringSetPrx"], , , , , ], "adapterIds": [, 0, , ["Glacier2.StringSetPrx"], , , , , ], "identities": [, 0, , ["Glacier2.IdentitySetPrx"], , , , , ], "getSessionTimeout": [, 2, , [3], , , , , ], "destroy": [, 0, , , , , , , ] }); const iceC_Glacier2_SessionManager_ids = [ "::Glacier2::SessionManager", "::Ice::Object" ]; /** * Represents an application-provided factory for session objects. You can configure a Glacier2 router with your * own SessionManager implementation; this router will then return the sessions created by this session manager to * its clients. */ Glacier2.SessionManager = class extends Ice.Object {}; /** * Represents an application-provided factory for session objects. You can configure a Glacier2 router with your * own SessionManager implementation; this router will then return the sessions created by this session manager to * its clients. */ Glacier2.SessionManagerPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.SessionManagerPrx", Glacier2.SessionManagerPrx); Ice.defineOperations( Glacier2.SessionManager, Glacier2.SessionManagerPrx, iceC_Glacier2_SessionManager_ids, "::Glacier2::SessionManager", { "create": [, 0, , ["Glacier2.SessionPrx"], [[7], ["Glacier2.SessionControlPrx"]], , [ Glacier2.CannotCreateSessionException ], , ] }); const iceC_Glacier2_SSLSessionManager_ids = [ "::Glacier2::SSLSessionManager", "::Ice::Object" ]; /** * Represents an application-provided factory for session objects. You can configure a Glacier2 router with your * own SSLSessionManager implementation; this router will then return the sessions created by this session manager * to its clients. */ Glacier2.SSLSessionManager = class extends Ice.Object {}; /** * Represents an application-provided factory for session objects. You can configure a Glacier2 router with your * own SSLSessionManager implementation; this router will then return the sessions created by this session manager * to its clients. */ Glacier2.SSLSessionManagerPrx = class extends Ice.ObjectPrx {}; Ice.TypeRegistry.declareProxyType("Glacier2.SSLSessionManagerPrx", Glacier2.SSLSessionManagerPrx); Ice.defineOperations( Glacier2.SSLSessionManager, Glacier2.SSLSessionManagerPrx, iceC_Glacier2_SSLSessionManager_ids, "::Glacier2::SSLSessionManager", { "create": [, 0, , ["Glacier2.SessionPrx"], [[Glacier2.SSLInfo], ["Glacier2.SessionControlPrx"]], , [ Glacier2.CannotCreateSessionException ], , ] }); |