有一个这样的功能:
public MImage ImageHandler (parameter){
// do something
}
这个函数会根据参数需要一些时间,现在我想监控这个函数的执行,并在函数完成后做一些事情,像这样:
//call this function
Task task = new task(ImageHandler(parameter));
task.begin();
task.done +=(()={ // do something after the function is done});
那么我怎样才能做到呢?
提前致谢。