@fluidframework/container-runtime 2.0.0-internal.2.3.1 → 2.0.0-internal.2.4.0

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.
@@ -295,7 +295,7 @@ export class ContainerRuntime extends TypedEventEmitter {
295
295
  if (!this.disposed) {
296
296
  this.submit(ContainerMessageType.BlobAttach, undefined, undefined, { localId, blobId });
297
297
  }
298
- }, (blobPath) => this.garbageCollector.nodeUpdated(blobPath, "Loaded"), (fromPath, toPath) => this.garbageCollector.addedOutboundReference(fromPath, toPath), this, pendingRuntimeState === null || pendingRuntimeState === void 0 ? void 0 : pendingRuntimeState.pendingAttachmentBlobs);
298
+ }, (blobPath) => this.garbageCollector.nodeUpdated(blobPath, "Loaded"), (fromPath, toPath) => this.garbageCollector.addedOutboundReference(fromPath, toPath), this, pendingRuntimeState === null || pendingRuntimeState === void 0 ? void 0 : pendingRuntimeState.pendingAttachmentBlobs, () => this.getCurrentReferenceTimestampMs());
299
299
  this.scheduleManager = new ScheduleManager(context.deltaManager, this, () => this.clientId, ChildLogger.create(this.logger, "ScheduleManager"));
300
300
  this.pendingStateManager = new PendingStateManager({
301
301
  applyStashedOp: this.applyStashedOp.bind(this),
@@ -469,7 +469,7 @@ export class ContainerRuntime extends TypedEventEmitter {
469
469
  logger.sendErrorEvent({ eventName: "SequenceNumberMismatch" }, error);
470
470
  }
471
471
  else {
472
- // Call both close and dispose as close implementation will no longer dispose runtime in future (2.0.0-internal.3.0.0)
472
+ // Call both close and dispose as closeFn implementation will no longer dispose runtime in future
473
473
  context.closeFn(error);
474
474
  (_d = context.disposeFn) === null || _d === void 0 ? void 0 : _d.call(context, error);
475
475
  }