Sha256: 1b51fe400b52e736622640aa62015c696df8fb29fd99dca843d8abaf5384b3f8
Contents?: true
Size: 861 Bytes
Versions: 49
Compression:
Stored size: 861 Bytes
Contents
/** PURE_IMPORTS_START ._SubscriptionLog PURE_IMPORTS_END */ import { SubscriptionLog } from './SubscriptionLog'; export var SubscriptionLoggable = /*@__PURE__*/ (/*@__PURE__*/ function () { function SubscriptionLoggable() { this.subscriptions = []; } SubscriptionLoggable.prototype.logSubscribedFrame = function () { this.subscriptions.push(new SubscriptionLog(this.scheduler.now())); return this.subscriptions.length - 1; }; SubscriptionLoggable.prototype.logUnsubscribedFrame = function (index) { var subscriptionLogs = this.subscriptions; var oldSubscriptionLog = subscriptionLogs[index]; subscriptionLogs[index] = new SubscriptionLog(oldSubscriptionLog.subscribedFrame, this.scheduler.now()); }; return SubscriptionLoggable; }()); //# sourceMappingURL=SubscriptionLoggable.js.map
Version data entries
49 entries across 49 versions & 4 rubygems