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 : 216.73.216.44
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 /
rx /
ts /
core /
concurrency /
Delete
Unzip
Name
Size
Permission
Date
Action
currentthreadscheduler.ts
377
B
-rw-rw-r--
2022-08-30 11:49
defaultscheduler.ts
258
B
-rw-rw-r--
2022-08-30 11:49
historicalscheduler.ts
704
B
-rw-rw-r--
2022-08-30 11:49
immediatescheduler.ts
207
B
-rw-rw-r--
2022-08-30 11:49
scheduleditem.ts
1.44
KB
-rw-rw-r--
2022-08-30 11:49
scheduleperiodicrecursive.ts
595
B
-rw-rw-r--
2022-08-30 11:49
scheduler.periodic.ts
933
B
-rw-rw-r--
2022-08-30 11:49
scheduler.recursive.ts
1.71
KB
-rw-rw-r--
2022-08-30 11:49
scheduler.ts
2.15
KB
-rw-rw-r--
2022-08-30 11:49
scheduler.wrappers.ts
622
B
-rw-rw-r--
2022-08-30 11:49
virtualtimescheduler.ts
2.68
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/// <reference path="../disposables/disposable.ts" /> module Rx { export interface IScheduler { /** * Schedules an action to be executed recursively. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in recursive invocation state. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ scheduleRecursive<TState>(state: TState, action: (state: TState, action: (state: TState) => void) => void): IDisposable; /** * Schedules an action to be executed recursively after a specified relative due time. * @param {Mixed} state State passed to the action to be executed. * @param {Function} action Action to execute recursively. The last parameter passed to the action is used to trigger recursive scheduling of the action, passing in the recursive due time and invocation state. * @param {Number}dueTime Relative time after which to execute the action for the first time. * @returns {Disposable} The disposable object used to cancel the scheduled action (best effort). */ scheduleRecursiveFuture<TState, TTime extends number | Date>(state: TState, dueTime: TTime, action: (state: TState, action: (state: TState, dueTime: TTime) => void) => void): IDisposable; } } (function() { var s: Rx.IScheduler; var d: Rx.IDisposable = s.scheduleRecursive('state', (s, a) => Rx.Disposable.empty); var d: Rx.IDisposable = s.scheduleRecursiveFuture('state', 100, (s, a) => Rx.Disposable.empty); })