-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
80 lines (69 loc) · 1.91 KB
/
types.ts
File metadata and controls
80 lines (69 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import type { PromiseCancellable } from '@matrixai/async-cancellable';
import type { ResourceRelease } from '@matrixai/resources';
import type { Timer } from '@matrixai/timer';
/**
* Plain data dictionary
*/
type POJO = { [key: string]: any };
/**
* Deconstructed promise
*/
type PromiseDeconstructed<T> = {
p: Promise<T>;
resolveP: (value: T | PromiseLike<T>) => void;
rejectP: (reason?: any) => void;
};
/**
* Derived from `ResourceAcquire`, this is just cancellable too
*/
type ResourceAcquireCancellable<Resource> = (
resources?: readonly any[],
) => PromiseCancellable<readonly [ResourceRelease, Resource?]>;
interface Lockable {
count: number;
lock(...params: Array<unknown>): ResourceAcquireCancellable<Lockable>;
isLocked(...params: Array<unknown>): boolean;
waitForUnlock(...params: Array<unknown>): PromiseCancellable<void>;
withF<T>(...params: Array<unknown>): Promise<T>;
withG<T, TReturn, TNext>(
...params: Array<unknown>
): AsyncGenerator<T, TReturn, TNext>;
}
type LockRequest<L extends Lockable = Lockable> = [
key: string,
lockConstructor: new () => L,
...lockingParams: Parameters<L['lock']>,
];
type LockAcquireCancellable<L extends Lockable = Lockable> = [
key: string,
lockAcquire: ResourceAcquireCancellable<L>,
...lockingParams: Parameters<L['lock']>,
];
type LockAcquired<L extends Lockable = Lockable> = [
key: string,
lock: L,
...lockingParams: Parameters<L['lock']>,
];
type RWLockRequest =
| [key: string, type?: 'read' | 'write', ctx?: Partial<ContextTimedInput>]
| [key: string, ctx?: Partial<ContextTimedInput>];
type ContextTimed = {
signal: AbortSignal;
timer: Timer;
};
type ContextTimedInput = {
signal: AbortSignal;
timer: Timer | number;
};
export type {
POJO,
PromiseDeconstructed,
ResourceAcquireCancellable,
Lockable,
LockRequest,
LockAcquireCancellable,
LockAcquired,
RWLockRequest,
ContextTimed,
ContextTimedInput,
};