Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.147.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
rxjs /
_esm2015 /
testing /
Delete
Unzip
Name
Size
Permission
Date
Action
ColdObservable.js
1.29
KB
-rw-rw-r--
2022-08-30 11:49
ColdObservable.js.map
1.21
KB
-rw-rw-r--
2022-08-30 11:49
HotObservable.js
1.32
KB
-rw-rw-r--
2022-08-30 11:49
HotObservable.js.map
1.2
KB
-rw-rw-r--
2022-08-30 11:49
SubscriptionLog.js
263
B
-rw-rw-r--
2022-08-30 11:49
SubscriptionLog.js.map
274
B
-rw-rw-r--
2022-08-30 11:49
SubscriptionLoggable.js
619
B
-rw-rw-r--
2022-08-30 11:49
SubscriptionLoggable.js.map
652
B
-rw-rw-r--
2022-08-30 11:49
TestMessage.js
39
B
-rw-rw-r--
2022-08-30 11:49
TestMessage.js.map
125
B
-rw-rw-r--
2022-08-30 11:49
TestScheduler.js
8.54
KB
-rw-rw-r--
2022-08-30 11:49
TestScheduler.js.map
7.57
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { Subject } from '../Subject'; import { Subscription } from '../Subscription'; import { SubscriptionLoggable } from './SubscriptionLoggable'; import { applyMixins } from '../util/applyMixins'; /** * We need this JSDoc comment for affecting ESDoc. * @ignore * @extends {Ignored} */ export class HotObservable extends Subject { constructor(messages, scheduler) { super(); this.messages = messages; this.subscriptions = []; this.scheduler = scheduler; } /** @deprecated internal use only */ _subscribe(subscriber) { const subject = this; const index = subject.logSubscribedFrame(); subscriber.add(new Subscription(() => { subject.logUnsubscribedFrame(index); })); return super._subscribe(subscriber); } setup() { const subject = this; const messagesLength = subject.messages.length; /* tslint:disable:no-var-keyword */ for (var i = 0; i < messagesLength; i++) { (() => { var message = subject.messages[i]; /* tslint:enable */ subject.scheduler.schedule(() => { message.notification.observe(subject); }, message.frame); })(); } } } applyMixins(HotObservable, [SubscriptionLoggable]); //# sourceMappingURL=HotObservable.js.map