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.10.50
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 /
scheduler /
Delete
Unzip
Name
Size
Permission
Date
Action
Action.ts
1.21
KB
-rw-rw-r--
2022-08-30 11:49
AnimationFrameAction.ts
2.05
KB
-rw-rw-r--
2022-08-30 11:49
AnimationFrameScheduler.ts
756
B
-rw-rw-r--
2022-08-30 11:49
AsapAction.ts
1.92
KB
-rw-rw-r--
2022-08-30 11:49
AsapScheduler.ts
746
B
-rw-rw-r--
2022-08-30 11:49
AsyncAction.ts
4.84
KB
-rw-rw-r--
2022-08-30 11:49
AsyncScheduler.ts
1.08
KB
-rw-rw-r--
2022-08-30 11:49
QueueAction.ts
1.35
KB
-rw-rw-r--
2022-08-30 11:49
QueueScheduler.ts
107
B
-rw-rw-r--
2022-08-30 11:49
VirtualTimeScheduler.ts
2.89
KB
-rw-rw-r--
2022-08-30 11:49
animationFrame.ts
1.18
KB
-rw-rw-r--
2022-08-30 11:49
asap.ts
1.56
KB
-rw-rw-r--
2022-08-30 11:49
async.ts
1.38
KB
-rw-rw-r--
2022-08-30 11:49
queue.ts
1.91
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { Scheduler } from '../Scheduler'; import { Subscription } from '../Subscription'; /** * A unit of work to be executed in a {@link Scheduler}. An action is typically * created from within a Scheduler and an RxJS user does not need to concern * themselves about creating and manipulating an Action. * * ```ts * class Action<T> extends Subscription { * new (scheduler: Scheduler, work: (state?: T) => void); * schedule(state?: T, delay: number = 0): Subscription; * } * ``` * * @class Action<T> */ export class Action<T> extends Subscription { constructor(scheduler: Scheduler, work: (this: Action<T>, state?: T) => void) { super(); } /** * Schedules this action on its parent Scheduler for execution. May be passed * some context object, `state`. May happen at some point in the future, * according to the `delay` parameter, if specified. * @param {T} [state] Some contextual data that the `work` function uses when * called by the Scheduler. * @param {number} [delay] Time to wait before executing the work, where the * time unit is implicit and defined by the Scheduler. * @return {void} */ public schedule(state?: T, delay: number = 0): Subscription { return this; } }