frontend/.pnpm-store/v3/files/d5/5229f1e6f7b450ff9be5c84e0c0d524a288115ba9f760dfc7608464462b4b03773d044391293a03f4eced07612caa30714489ee23b59264f63c36e2f152cb4

20 lines
872 B
Plaintext

/** PURE_IMPORTS_START _SubscriptionLog PURE_IMPORTS_END */
import { SubscriptionLog } from './SubscriptionLog';
var SubscriptionLoggable = /*@__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;
}());
export { SubscriptionLoggable };
//# sourceMappingURL=SubscriptionLoggable.js.map