|
@@ -4,9 +4,9 @@
|
|
|
* @author David Sehnal <david.sehnal@gmail.com>
|
|
|
*/
|
|
|
|
|
|
-import { Task, Run, Progress, Scheduler } from 'mol-task'
|
|
|
+import { Task, Run, Progress, Scheduler, now } from 'mol-task'
|
|
|
|
|
|
-async function test() {
|
|
|
+export async function test1() {
|
|
|
const t = Task.create('test', async () => 1);
|
|
|
const r = await Run(t);
|
|
|
console.log(r);
|
|
@@ -26,11 +26,20 @@ function createTask<T>(delayMs: number, r: T): Task<T> {
|
|
|
await Scheduler.delay(delayMs);
|
|
|
if (ctx.shouldUpdate) await ctx.update({ message: 'hello from delayed... ' });
|
|
|
return r;
|
|
|
+ }, () => console.log('On abort called ' + r));
|
|
|
+}
|
|
|
+
|
|
|
+export function abortAfter(delay: number) {
|
|
|
+ return Task.create('abort after ' + delay, async ctx => {
|
|
|
+ await Scheduler.delay(delay);
|
|
|
+ throw Task.Aborted('test');
|
|
|
+ //if (ctx.shouldUpdate) await ctx.update({ message: 'hello from delayed... ' });
|
|
|
+ //return r;
|
|
|
});
|
|
|
}
|
|
|
|
|
|
-async function testObs() {
|
|
|
- const t = Task.create('test o', async ctx => {
|
|
|
+function testTree() {
|
|
|
+ return Task.create('test o', async ctx => {
|
|
|
await Scheduler.delay(250);
|
|
|
if (ctx.shouldUpdate) await ctx.update({ message: 'hi! 1' });
|
|
|
await Scheduler.delay(125);
|
|
@@ -38,17 +47,35 @@ async function testObs() {
|
|
|
await Scheduler.delay(250);
|
|
|
if (ctx.shouldUpdate) await ctx.update('hi! 3');
|
|
|
|
|
|
- ctx.update('Running children...', true);
|
|
|
+ // ctx.update('Running children...', true);
|
|
|
const c1 = ctx.runChild(createTask(250, 1));
|
|
|
const c2 = ctx.runChild(createTask(500, 2));
|
|
|
const c3 = ctx.runChild(createTask(750, 3));
|
|
|
+
|
|
|
+ //await ctx.runChild(abortAfter(350));
|
|
|
+
|
|
|
const r = await c1 + await c2 + await c3;
|
|
|
if (ctx.shouldUpdate) await ctx.update({ message: 'Almost done...' });
|
|
|
return r + 1;
|
|
|
});
|
|
|
- const r = await Run(t, p => console.log(messageTree(p.root)), 250);
|
|
|
- console.log(r);
|
|
|
+}
|
|
|
+
|
|
|
+export function abortingObserver(p: Progress) {
|
|
|
+ console.log(messageTree(p.root));
|
|
|
+ if (now() - p.root.progress.startedTime > 1000) {
|
|
|
+ p.requestAbort('test');
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+async function test() {
|
|
|
+ try {
|
|
|
+ //const r = await Run(testTree(), p => console.log(messageTree(p.root)), 250);
|
|
|
+ const r = await Run(testTree(), abortingObserver, 250);
|
|
|
+ console.log(r);
|
|
|
+ } catch (e) {
|
|
|
+ console.error(e);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
test();
|
|
|
-testObs();
|
|
|
+//testObs();
|