|
@@ -62,10 +62,18 @@ import test7 : test7_spawner;
|
|
|
*/
|
|
|
|
|
|
|
|
|
-// test8
|
|
|
+/*
|
|
|
+// test8 - vibed async task
|
|
|
import std.concurrency : spawn;
|
|
|
|
|
|
import test8 : test8_spawner;
|
|
|
+*/
|
|
|
+
|
|
|
+
|
|
|
+// test9 - vibed async task
|
|
|
+import std.concurrency : spawn;
|
|
|
+
|
|
|
+import test9 : test9_spawner;
|
|
|
|
|
|
|
|
|
void main(){
|
|
@@ -76,7 +84,8 @@ void main(){
|
|
|
//spawn(&test5_spawner); // test5 run
|
|
|
//spawn(&test6_spawner); // test6 run
|
|
|
//spawn(&test7_spawner); // test7 run
|
|
|
- spawn(&test8_spawner); // test8 run
|
|
|
+ //spawn(&test8_spawner); // test8 run
|
|
|
+ spawn(&test9_spawner); // test9 run
|
|
|
|
|
|
//Thread.sleep(dur!"seconds"(125));
|
|
|
//Thread.sleep(dur!"seconds"(3));
|