Skip to content
linsen edited this page May 29, 2020 · 2 revisions

1. General Task

Evented interface

2.How to use

import hunt.framework.task.TaskExecutor;

class TaskDemo : TaskExecutor 
{
    void execute()
    {
        writeln("hello world");
    }
}

TaskDemo taskDemo = new TaskDemo();
taskDemo.execute();
Clone this wiki locally