@dxos/client-services 0.3.3-main.e0ded2e → 0.3.3-main.ef9deca
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/browser/{chunk-OC4A3Z5C.mjs → chunk-ORTXE542.mjs} +81 -47
- package/dist/lib/browser/chunk-ORTXE542.mjs.map +7 -0
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/packlets/testing/index.mjs +1 -1
- package/dist/lib/node/index.cjs +85 -51
- package/dist/lib/node/index.cjs.map +3 -3
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/packlets/testing/index.cjs +139 -58
- package/dist/lib/node/packlets/testing/index.cjs.map +3 -3
- package/dist/types/src/packlets/services/client-rpc-server.d.ts +2 -0
- package/dist/types/src/packlets/services/client-rpc-server.d.ts.map +1 -1
- package/dist/types/src/packlets/services/diagnostics.d.ts +4 -1
- package/dist/types/src/packlets/services/diagnostics.d.ts.map +1 -1
- package/dist/types/src/version.d.ts +1 -1
- package/package.json +35 -35
- package/src/packlets/services/client-rpc-server.ts +18 -1
- package/src/packlets/services/diagnostics.ts +15 -0
- package/src/version.ts +1 -1
- package/dist/lib/browser/chunk-OC4A3Z5C.mjs.map +0 -7
|
@@ -2420,9 +2420,21 @@ var SpaceInvitationProtocol = class {
|
|
|
2420
2420
|
import { Stream as Stream9 } from "@dxos/codec-protobuf";
|
|
2421
2421
|
import { raise } from "@dxos/debug";
|
|
2422
2422
|
import { parseMethodName, RpcPeer } from "@dxos/rpc";
|
|
2423
|
-
|
|
2423
|
+
import { MapCounter, trace as trace5 } from "@dxos/tracing";
|
|
2424
|
+
function _ts_decorate3(decorators, target, key, desc) {
|
|
2425
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
2426
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
2427
|
+
r = Reflect.decorate(decorators, target, key, desc);
|
|
2428
|
+
else
|
|
2429
|
+
for (var i = decorators.length - 1; i >= 0; i--)
|
|
2430
|
+
if (d = decorators[i])
|
|
2431
|
+
r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
2432
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
2433
|
+
}
|
|
2434
|
+
var ClientRpcServer = class ClientRpcServer2 {
|
|
2424
2435
|
constructor(params) {
|
|
2425
2436
|
this._handlerCache = /* @__PURE__ */ new Map();
|
|
2437
|
+
this._callMetrics = new MapCounter();
|
|
2426
2438
|
const { serviceRegistry, handleCall, handleStream, ...rpcOptions } = params;
|
|
2427
2439
|
this._handleCall = handleCall;
|
|
2428
2440
|
this._handleStream = handleStream;
|
|
@@ -2432,6 +2444,7 @@ var ClientRpcServer = class {
|
|
|
2432
2444
|
callHandler: (method, params2) => {
|
|
2433
2445
|
const [serviceName, methodName] = parseMethodName(method);
|
|
2434
2446
|
const handler = (method2, params3) => this._getServiceHandler(serviceName).call(method2, params3);
|
|
2447
|
+
this._callMetrics.inc(`${serviceName}.${methodName} request`);
|
|
2435
2448
|
if (this._handleCall) {
|
|
2436
2449
|
return this._handleCall(methodName, params2, handler);
|
|
2437
2450
|
} else {
|
|
@@ -2441,14 +2454,21 @@ var ClientRpcServer = class {
|
|
|
2441
2454
|
streamHandler: (method, params2) => {
|
|
2442
2455
|
const [serviceName, methodName] = parseMethodName(method);
|
|
2443
2456
|
const handler = (method2, params3) => this._getServiceHandler(serviceName).callStream(method2, params3);
|
|
2457
|
+
this._callMetrics.inc(`${serviceName}.${methodName} request stream`);
|
|
2444
2458
|
if (this._handleStream) {
|
|
2445
|
-
return Stream9.unwrapPromise(this._handleStream(methodName, params2, handler))
|
|
2459
|
+
return Stream9.map(Stream9.unwrapPromise(this._handleStream(methodName, params2, handler)), (data) => {
|
|
2460
|
+
this._callMetrics.inc(`${serviceName}.${methodName} response stream`);
|
|
2461
|
+
return data;
|
|
2462
|
+
});
|
|
2446
2463
|
} else {
|
|
2447
2464
|
return handler(methodName, params2);
|
|
2448
2465
|
}
|
|
2449
2466
|
}
|
|
2450
2467
|
});
|
|
2451
2468
|
}
|
|
2469
|
+
get _services() {
|
|
2470
|
+
return Object.keys(this._serviceRegistry.services);
|
|
2471
|
+
}
|
|
2452
2472
|
async open() {
|
|
2453
2473
|
await this._rpcPeer.open();
|
|
2454
2474
|
}
|
|
@@ -2467,6 +2487,15 @@ var ClientRpcServer = class {
|
|
|
2467
2487
|
return this._handlerCache.get(serviceName);
|
|
2468
2488
|
}
|
|
2469
2489
|
};
|
|
2490
|
+
_ts_decorate3([
|
|
2491
|
+
trace5.metricsCounter()
|
|
2492
|
+
], ClientRpcServer.prototype, "_callMetrics", void 0);
|
|
2493
|
+
_ts_decorate3([
|
|
2494
|
+
trace5.info()
|
|
2495
|
+
], ClientRpcServer.prototype, "_services", null);
|
|
2496
|
+
ClientRpcServer = _ts_decorate3([
|
|
2497
|
+
trace5.resource()
|
|
2498
|
+
], ClientRpcServer);
|
|
2470
2499
|
|
|
2471
2500
|
// packages/sdk/client-services/src/packlets/services/diagnostics.ts
|
|
2472
2501
|
import { getFirstStreamValue } from "@dxos/codec-protobuf";
|
|
@@ -2507,7 +2536,7 @@ var getPlatform = () => {
|
|
|
2507
2536
|
};
|
|
2508
2537
|
|
|
2509
2538
|
// packages/sdk/client-services/src/version.ts
|
|
2510
|
-
var DXOS_VERSION = "0.3.3-main.
|
|
2539
|
+
var DXOS_VERSION = "0.3.3-main.ef9deca";
|
|
2511
2540
|
|
|
2512
2541
|
// packages/sdk/client-services/src/packlets/services/diagnostics.ts
|
|
2513
2542
|
var __dxlog_file10 = "/home/runner/work/dxos/dxos/packages/sdk/client-services/src/packlets/services/diagnostics.ts";
|
|
@@ -2526,7 +2555,7 @@ var createDiagnostics = async (clientServices, serviceContext, config) => {
|
|
|
2526
2555
|
{
|
|
2527
2556
|
invariant9(clientServices.LoggingService, "SystemService is not available.", {
|
|
2528
2557
|
F: __dxlog_file10,
|
|
2529
|
-
L:
|
|
2558
|
+
L: 92,
|
|
2530
2559
|
S: void 0,
|
|
2531
2560
|
A: [
|
|
2532
2561
|
"clientServices.LoggingService",
|
|
@@ -2559,6 +2588,11 @@ var createDiagnostics = async (clientServices, serviceContext, config) => {
|
|
|
2559
2588
|
bytes,
|
|
2560
2589
|
length
|
|
2561
2590
|
}));
|
|
2591
|
+
const status = await getFirstStreamValue(clientServices.NetworkService.queryStatus(), {
|
|
2592
|
+
timeout: DEFAULT_TIMEOUT
|
|
2593
|
+
}).catch(() => void 0);
|
|
2594
|
+
diagnostics.networkStatus = status;
|
|
2595
|
+
diagnostics.swarms = serviceContext.networkManager.connectionLog?.swarms;
|
|
2562
2596
|
}
|
|
2563
2597
|
diagnostics.config = config.values;
|
|
2564
2598
|
return diagnostics;
|
|
@@ -2572,7 +2606,7 @@ var getProperties = (space) => {
|
|
|
2572
2606
|
} catch (err) {
|
|
2573
2607
|
log8.warn(err.message, void 0, {
|
|
2574
2608
|
F: __dxlog_file10,
|
|
2575
|
-
L:
|
|
2609
|
+
L: 160,
|
|
2576
2610
|
S: void 0,
|
|
2577
2611
|
C: (f, a) => f(...a)
|
|
2578
2612
|
});
|
|
@@ -2639,7 +2673,7 @@ import { CancelledError, SystemError } from "@dxos/protocols";
|
|
|
2639
2673
|
import { SpaceState } from "@dxos/protocols/proto/dxos/client/services";
|
|
2640
2674
|
import { AdmittedFeed as AdmittedFeed3 } from "@dxos/protocols/proto/dxos/halo/credentials";
|
|
2641
2675
|
import { Timeframe as Timeframe2 } from "@dxos/timeframe";
|
|
2642
|
-
import { trace as
|
|
2676
|
+
import { trace as trace6 } from "@dxos/tracing";
|
|
2643
2677
|
import { ComplexSet as ComplexSet3 } from "@dxos/util";
|
|
2644
2678
|
|
|
2645
2679
|
// packages/sdk/client-services/src/packlets/spaces/notarization-plugin.ts
|
|
@@ -2911,7 +2945,7 @@ var NotarizationTeleportExtension = class extends RpcExtension2 {
|
|
|
2911
2945
|
};
|
|
2912
2946
|
|
|
2913
2947
|
// packages/sdk/client-services/src/packlets/spaces/data-space.ts
|
|
2914
|
-
function
|
|
2948
|
+
function _ts_decorate4(decorators, target, key, desc) {
|
|
2915
2949
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
2916
2950
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
2917
2951
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -3243,32 +3277,32 @@ var DataSpace = class DataSpace2 {
|
|
|
3243
3277
|
this.stateUpdate.emit();
|
|
3244
3278
|
}
|
|
3245
3279
|
};
|
|
3246
|
-
|
|
3280
|
+
_ts_decorate4([
|
|
3247
3281
|
synchronized
|
|
3248
3282
|
], DataSpace.prototype, "open", null);
|
|
3249
|
-
|
|
3283
|
+
_ts_decorate4([
|
|
3250
3284
|
synchronized
|
|
3251
3285
|
], DataSpace.prototype, "close", null);
|
|
3252
|
-
|
|
3253
|
-
|
|
3286
|
+
_ts_decorate4([
|
|
3287
|
+
trace6.span({
|
|
3254
3288
|
showInBrowserTimeline: true
|
|
3255
3289
|
})
|
|
3256
3290
|
], DataSpace.prototype, "initializeDataPipeline", null);
|
|
3257
|
-
|
|
3258
|
-
|
|
3291
|
+
_ts_decorate4([
|
|
3292
|
+
trace6.span({
|
|
3259
3293
|
showInBrowserTimeline: true
|
|
3260
3294
|
})
|
|
3261
3295
|
], DataSpace.prototype, "_initializeAndReadControlPipeline", null);
|
|
3262
|
-
|
|
3296
|
+
_ts_decorate4([
|
|
3263
3297
|
timed(1e4)
|
|
3264
3298
|
], DataSpace.prototype, "_createWritableFeeds", null);
|
|
3265
|
-
|
|
3299
|
+
_ts_decorate4([
|
|
3266
3300
|
synchronized
|
|
3267
3301
|
], DataSpace.prototype, "activate", null);
|
|
3268
|
-
|
|
3302
|
+
_ts_decorate4([
|
|
3269
3303
|
synchronized
|
|
3270
3304
|
], DataSpace.prototype, "deactivate", null);
|
|
3271
|
-
DataSpace =
|
|
3305
|
+
DataSpace = _ts_decorate4([
|
|
3272
3306
|
trackLeaks("open", "close")
|
|
3273
3307
|
], DataSpace);
|
|
3274
3308
|
|
|
@@ -3279,7 +3313,7 @@ import { getCredentialAssertion as getCredentialAssertion2 } from "@dxos/credent
|
|
|
3279
3313
|
import { invariant as invariant11 } from "@dxos/invariant";
|
|
3280
3314
|
import { PublicKey as PublicKey9 } from "@dxos/keys";
|
|
3281
3315
|
import { log as log11 } from "@dxos/log";
|
|
3282
|
-
import { trace as
|
|
3316
|
+
import { trace as trace7 } from "@dxos/protocols";
|
|
3283
3317
|
import { SpaceState as SpaceState2 } from "@dxos/protocols/proto/dxos/client/services";
|
|
3284
3318
|
import { Gossip, Presence } from "@dxos/teleport-extension-gossip";
|
|
3285
3319
|
import { ComplexMap as ComplexMap3, deferFunction as deferFunction2, forEachAsync } from "@dxos/util";
|
|
@@ -3354,7 +3388,7 @@ var spaceGenesis = async (keyring, signingContext, space) => {
|
|
|
3354
3388
|
};
|
|
3355
3389
|
|
|
3356
3390
|
// packages/sdk/client-services/src/packlets/spaces/data-space-manager.ts
|
|
3357
|
-
function
|
|
3391
|
+
function _ts_decorate5(decorators, target, key, desc) {
|
|
3358
3392
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3359
3393
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
3360
3394
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -3390,7 +3424,7 @@ var DataSpaceManager = class DataSpaceManager2 {
|
|
|
3390
3424
|
S: this,
|
|
3391
3425
|
C: (f, a) => f(...a)
|
|
3392
3426
|
});
|
|
3393
|
-
log11.trace("dxos.echo.data-space-manager.open",
|
|
3427
|
+
log11.trace("dxos.echo.data-space-manager.open", trace7.begin({
|
|
3394
3428
|
id: this._instanceId
|
|
3395
3429
|
}), {
|
|
3396
3430
|
F: __dxlog_file13,
|
|
@@ -3436,7 +3470,7 @@ var DataSpaceManager = class DataSpaceManager2 {
|
|
|
3436
3470
|
space.initializeDataPipelineAsync();
|
|
3437
3471
|
}
|
|
3438
3472
|
}
|
|
3439
|
-
log11.trace("dxos.echo.data-space-manager.open",
|
|
3473
|
+
log11.trace("dxos.echo.data-space-manager.open", trace7.end({
|
|
3440
3474
|
id: this._instanceId
|
|
3441
3475
|
}), {
|
|
3442
3476
|
F: __dxlog_file13,
|
|
@@ -3670,19 +3704,19 @@ var DataSpaceManager = class DataSpaceManager2 {
|
|
|
3670
3704
|
return dataSpace;
|
|
3671
3705
|
}
|
|
3672
3706
|
};
|
|
3673
|
-
|
|
3707
|
+
_ts_decorate5([
|
|
3674
3708
|
synchronized2
|
|
3675
3709
|
], DataSpaceManager.prototype, "open", null);
|
|
3676
|
-
|
|
3710
|
+
_ts_decorate5([
|
|
3677
3711
|
synchronized2
|
|
3678
3712
|
], DataSpaceManager.prototype, "close", null);
|
|
3679
|
-
|
|
3713
|
+
_ts_decorate5([
|
|
3680
3714
|
synchronized2
|
|
3681
3715
|
], DataSpaceManager.prototype, "createSpace", null);
|
|
3682
|
-
|
|
3716
|
+
_ts_decorate5([
|
|
3683
3717
|
synchronized2
|
|
3684
3718
|
], DataSpaceManager.prototype, "acceptSpace", null);
|
|
3685
|
-
DataSpaceManager =
|
|
3719
|
+
DataSpaceManager = _ts_decorate5([
|
|
3686
3720
|
trackLeaks2("open", "close")
|
|
3687
3721
|
], DataSpaceManager);
|
|
3688
3722
|
|
|
@@ -3918,12 +3952,12 @@ import { invariant as invariant13 } from "@dxos/invariant";
|
|
|
3918
3952
|
import { Keyring } from "@dxos/keyring";
|
|
3919
3953
|
import { PublicKey as PublicKey10 } from "@dxos/keys";
|
|
3920
3954
|
import { log as log13 } from "@dxos/log";
|
|
3921
|
-
import { InvalidStorageVersionError, STORAGE_VERSION as STORAGE_VERSION2, trace as
|
|
3955
|
+
import { InvalidStorageVersionError, STORAGE_VERSION as STORAGE_VERSION2, trace as trace8 } from "@dxos/protocols";
|
|
3922
3956
|
import { Invitation as Invitation6 } from "@dxos/protocols/proto/dxos/client/services";
|
|
3923
3957
|
import { BlobStore } from "@dxos/teleport-extension-object-sync";
|
|
3924
3958
|
import { trace as Trace2 } from "@dxos/tracing";
|
|
3925
3959
|
import { safeInstanceof } from "@dxos/util";
|
|
3926
|
-
function
|
|
3960
|
+
function _ts_decorate6(decorators, target, key, desc) {
|
|
3927
3961
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3928
3962
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
3929
3963
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -3978,7 +4012,7 @@ var ServiceContext = class ServiceContext2 {
|
|
|
3978
4012
|
S: this,
|
|
3979
4013
|
C: (f, a) => f(...a)
|
|
3980
4014
|
});
|
|
3981
|
-
log13.trace("dxos.sdk.service-context.open",
|
|
4015
|
+
log13.trace("dxos.sdk.service-context.open", trace8.begin({
|
|
3982
4016
|
id: this._instanceId
|
|
3983
4017
|
}), {
|
|
3984
4018
|
F: __dxlog_file15,
|
|
@@ -3994,7 +4028,7 @@ var ServiceContext = class ServiceContext2 {
|
|
|
3994
4028
|
if (this.identityManager.identity) {
|
|
3995
4029
|
await this._initialize(ctx);
|
|
3996
4030
|
}
|
|
3997
|
-
log13.trace("dxos.sdk.service-context.open",
|
|
4031
|
+
log13.trace("dxos.sdk.service-context.open", trace8.end({
|
|
3998
4032
|
id: this._instanceId
|
|
3999
4033
|
}), {
|
|
4000
4034
|
F: __dxlog_file15,
|
|
@@ -4157,13 +4191,13 @@ var ServiceContext = class ServiceContext2 {
|
|
|
4157
4191
|
await identity.space.spaceState.addCredentialProcessor(this._deviceSpaceSync);
|
|
4158
4192
|
}
|
|
4159
4193
|
};
|
|
4160
|
-
|
|
4194
|
+
_ts_decorate6([
|
|
4161
4195
|
Trace2.span()
|
|
4162
4196
|
], ServiceContext.prototype, "open", null);
|
|
4163
|
-
|
|
4197
|
+
_ts_decorate6([
|
|
4164
4198
|
Trace2.span()
|
|
4165
4199
|
], ServiceContext.prototype, "_initialize", null);
|
|
4166
|
-
ServiceContext =
|
|
4200
|
+
ServiceContext = _ts_decorate6([
|
|
4167
4201
|
safeInstanceof("dxos.client-services.ServiceContext"),
|
|
4168
4202
|
Trace2.resource()
|
|
4169
4203
|
], ServiceContext);
|
|
@@ -4196,7 +4230,7 @@ var ServiceRegistry = class {
|
|
|
4196
4230
|
import { asyncTimeout, Trigger as Trigger6 } from "@dxos/async";
|
|
4197
4231
|
import { RESOURCE_LOCK_TIMEOUT } from "@dxos/client-protocol";
|
|
4198
4232
|
import { log as log14, logInfo } from "@dxos/log";
|
|
4199
|
-
function
|
|
4233
|
+
function _ts_decorate7(decorators, target, key, desc) {
|
|
4200
4234
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4201
4235
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
4202
4236
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -4309,7 +4343,7 @@ var Lock = class {
|
|
|
4309
4343
|
});
|
|
4310
4344
|
}
|
|
4311
4345
|
};
|
|
4312
|
-
|
|
4346
|
+
_ts_decorate7([
|
|
4313
4347
|
logInfo
|
|
4314
4348
|
], Lock.prototype, "lockKey", null);
|
|
4315
4349
|
var isLocked = (lockPath) => {
|
|
@@ -4378,7 +4412,7 @@ import { log as log16 } from "@dxos/log";
|
|
|
4378
4412
|
import { WebsocketSignalManager } from "@dxos/messaging";
|
|
4379
4413
|
import { ModelFactory } from "@dxos/model-factory";
|
|
4380
4414
|
import { createSimplePeerTransportFactory, NetworkManager } from "@dxos/network-manager";
|
|
4381
|
-
import { trace as
|
|
4415
|
+
import { trace as trace9 } from "@dxos/protocols";
|
|
4382
4416
|
import { SystemStatus } from "@dxos/protocols/proto/dxos/client/services";
|
|
4383
4417
|
import { TextModel } from "@dxos/text-model";
|
|
4384
4418
|
import { TRACE_PROCESSOR, trace as Trace3 } from "@dxos/tracing";
|
|
@@ -4632,7 +4666,7 @@ var SystemServiceImpl = class {
|
|
|
4632
4666
|
};
|
|
4633
4667
|
|
|
4634
4668
|
// packages/sdk/client-services/src/packlets/services/service-host.ts
|
|
4635
|
-
function
|
|
4669
|
+
function _ts_decorate8(decorators, target, key, desc) {
|
|
4636
4670
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4637
4671
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
|
|
4638
4672
|
r = Reflect.decorate(decorators, target, key, desc);
|
|
@@ -4802,7 +4836,7 @@ var ClientServicesHost = class ClientServicesHost2 {
|
|
|
4802
4836
|
return;
|
|
4803
4837
|
}
|
|
4804
4838
|
const traceId = PublicKey11.random().toHex();
|
|
4805
|
-
log16.trace("dxos.client-services.host.open",
|
|
4839
|
+
log16.trace("dxos.client-services.host.open", trace9.begin({
|
|
4806
4840
|
id: traceId
|
|
4807
4841
|
}), {
|
|
4808
4842
|
F: __dxlog_file17,
|
|
@@ -4901,7 +4935,7 @@ var ClientServicesHost = class ClientServicesHost2 {
|
|
|
4901
4935
|
S: this,
|
|
4902
4936
|
C: (f, a) => f(...a)
|
|
4903
4937
|
});
|
|
4904
|
-
log16.trace("dxos.client-services.host.open",
|
|
4938
|
+
log16.trace("dxos.client-services.host.open", trace9.end({
|
|
4905
4939
|
id: traceId
|
|
4906
4940
|
}), {
|
|
4907
4941
|
F: __dxlog_file17,
|
|
@@ -4942,7 +4976,7 @@ var ClientServicesHost = class ClientServicesHost2 {
|
|
|
4942
4976
|
}
|
|
4943
4977
|
async reset() {
|
|
4944
4978
|
const traceId = PublicKey11.random().toHex();
|
|
4945
|
-
log16.trace("dxos.sdk.client-services-host.reset",
|
|
4979
|
+
log16.trace("dxos.sdk.client-services-host.reset", trace9.begin({
|
|
4946
4980
|
id: traceId
|
|
4947
4981
|
}), {
|
|
4948
4982
|
F: __dxlog_file17,
|
|
@@ -4964,7 +4998,7 @@ var ClientServicesHost = class ClientServicesHost2 {
|
|
|
4964
4998
|
S: this,
|
|
4965
4999
|
C: (f, a) => f(...a)
|
|
4966
5000
|
});
|
|
4967
|
-
log16.trace("dxos.sdk.client-services-host.reset",
|
|
5001
|
+
log16.trace("dxos.sdk.client-services-host.reset", trace9.end({
|
|
4968
5002
|
id: traceId
|
|
4969
5003
|
}), {
|
|
4970
5004
|
F: __dxlog_file17,
|
|
@@ -4994,21 +5028,21 @@ var ClientServicesHost = class ClientServicesHost2 {
|
|
|
4994
5028
|
return identity;
|
|
4995
5029
|
}
|
|
4996
5030
|
};
|
|
4997
|
-
|
|
5031
|
+
_ts_decorate8([
|
|
4998
5032
|
Trace3.info()
|
|
4999
5033
|
], ClientServicesHost.prototype, "_opening", void 0);
|
|
5000
|
-
|
|
5034
|
+
_ts_decorate8([
|
|
5001
5035
|
Trace3.info()
|
|
5002
5036
|
], ClientServicesHost.prototype, "_open", void 0);
|
|
5003
|
-
|
|
5037
|
+
_ts_decorate8([
|
|
5004
5038
|
synchronized3,
|
|
5005
5039
|
Trace3.span()
|
|
5006
5040
|
], ClientServicesHost.prototype, "open", null);
|
|
5007
|
-
|
|
5041
|
+
_ts_decorate8([
|
|
5008
5042
|
synchronized3,
|
|
5009
5043
|
Trace3.span()
|
|
5010
5044
|
], ClientServicesHost.prototype, "close", null);
|
|
5011
|
-
ClientServicesHost =
|
|
5045
|
+
ClientServicesHost = _ts_decorate8([
|
|
5012
5046
|
Trace3.resource()
|
|
5013
5047
|
], ClientServicesHost);
|
|
5014
5048
|
|
|
@@ -5045,4 +5079,4 @@ export {
|
|
|
5045
5079
|
createDefaultModelFactory,
|
|
5046
5080
|
ClientServicesHost
|
|
5047
5081
|
};
|
|
5048
|
-
//# sourceMappingURL=chunk-
|
|
5082
|
+
//# sourceMappingURL=chunk-ORTXE542.mjs.map
|