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 /
src /
testing /
Delete
Unzip
Name
Size
Permission
Date
Action
ColdObservable.ts
1.62
KB
-rw-rw-r--
2022-08-30 11:49
HotObservable.ts
1.61
KB
-rw-rw-r--
2022-08-30 11:49
SubscriptionLog.ts
159
B
-rw-rw-r--
2022-08-30 11:49
SubscriptionLoggable.ts
635
B
-rw-rw-r--
2022-08-30 11:49
TestMessage.ts
133
B
-rw-rw-r--
2022-08-30 11:49
TestScheduler.ts
8.42
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { Scheduler } from '../Scheduler'; import { SubscriptionLog } from './SubscriptionLog'; export class SubscriptionLoggable { public subscriptions: SubscriptionLog[] = []; scheduler: Scheduler; logSubscribedFrame(): number { this.subscriptions.push(new SubscriptionLog(this.scheduler.now())); return this.subscriptions.length - 1; } logUnsubscribedFrame(index: number) { const subscriptionLogs = this.subscriptions; const oldSubscriptionLog = subscriptionLogs[index]; subscriptionLogs[index] = new SubscriptionLog( oldSubscriptionLog.subscribedFrame, this.scheduler.now() ); } }