OSDN Git Service

更新履歴
[coroid/inqubus.git] / frontend / src / saccubus / worker / WorkerListener.java
1 package saccubus.worker;
2
3 /**
4  *
5  * @author yuki
6  */
7 public interface WorkerListener<T, V> {
8
9     void process(V progress);
10
11     void cancelled();
12
13     void done(T result);
14
15     void error(Throwable th);
16 }