@dxos/network-manager 0.3.4-next.90fec5e → 0.3.5-main.0b69ff7
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-W7BW2FK6.mjs → chunk-6MP4SAMK.mjs} +9 -6
- package/dist/lib/browser/{chunk-W7BW2FK6.mjs.map → chunk-6MP4SAMK.mjs.map} +2 -2
- package/dist/lib/browser/index.mjs +1 -1
- package/dist/lib/browser/meta.json +1 -1
- package/dist/lib/browser/testing/index.mjs +1 -1
- package/dist/lib/node/index.cjs +8 -5
- package/dist/lib/node/index.cjs.map +2 -2
- package/dist/lib/node/meta.json +1 -1
- package/dist/lib/node/testing/index.cjs +8 -5
- package/dist/lib/node/testing/index.cjs.map +2 -2
- package/dist/types/src/transport/memory-transport.d.ts.map +1 -1
- package/package.json +17 -17
- package/src/transport/memory-transport.ts +5 -2
|
@@ -2627,14 +2627,17 @@ var MemoryTransport = class _MemoryTransport {
|
|
|
2627
2627
|
});
|
|
2628
2628
|
this._remoteConnection._destroyed = true;
|
|
2629
2629
|
_MemoryTransport._connections.delete(this._remoteInstanceId);
|
|
2630
|
-
this.
|
|
2631
|
-
this._incomingDelay.unpipe();
|
|
2630
|
+
this.options.stream.unpipe(this._incomingDelay);
|
|
2631
|
+
this._incomingDelay.unpipe(this._remoteConnection.options.stream);
|
|
2632
|
+
this._remoteConnection.options.stream.unpipe(this._outgoingDelay);
|
|
2633
|
+
this._outgoingDelay.unpipe(this.options.stream);
|
|
2634
|
+
this.options.stream.unpipe(this._outgoingDelay);
|
|
2632
2635
|
this._remoteConnection.closed.emit();
|
|
2633
2636
|
this._remoteConnection._remoteConnection = void 0;
|
|
2634
2637
|
this._remoteConnection = void 0;
|
|
2635
2638
|
log10("closed", void 0, {
|
|
2636
2639
|
F: __dxlog_file11,
|
|
2637
|
-
L:
|
|
2640
|
+
L: 150,
|
|
2638
2641
|
S: this,
|
|
2639
2642
|
C: (f, a) => f(...a)
|
|
2640
2643
|
});
|
|
@@ -2642,7 +2645,7 @@ var MemoryTransport = class _MemoryTransport {
|
|
|
2642
2645
|
this.closed.emit();
|
|
2643
2646
|
log10("closed", void 0, {
|
|
2644
2647
|
F: __dxlog_file11,
|
|
2645
|
-
L:
|
|
2648
|
+
L: 154,
|
|
2646
2649
|
S: this,
|
|
2647
2650
|
C: (f, a) => f(...a)
|
|
2648
2651
|
});
|
|
@@ -2652,7 +2655,7 @@ var MemoryTransport = class _MemoryTransport {
|
|
|
2652
2655
|
payload
|
|
2653
2656
|
}, {
|
|
2654
2657
|
F: __dxlog_file11,
|
|
2655
|
-
L:
|
|
2658
|
+
L: 158,
|
|
2656
2659
|
S: this,
|
|
2657
2660
|
C: (f, a) => f(...a)
|
|
2658
2661
|
});
|
|
@@ -3602,4 +3605,4 @@ export {
|
|
|
3602
3605
|
TcpTransport,
|
|
3603
3606
|
createTeleportProtocolFactory
|
|
3604
3607
|
};
|
|
3605
|
-
//# sourceMappingURL=chunk-
|
|
3608
|
+
//# sourceMappingURL=chunk-6MP4SAMK.mjs.map
|