java 异步调用方法
2020-06-12 本文已影响0人
仰望_
异步方法
public void fun(String ip, String cmd, String path) throws Exception {
executor.submit(new Runnable() {
@Override
public void run() {
try {
//业务代码或调用其他方法
} catch (IOException e) {
throw new RuntimeException(getStackTraceAsString(e));
}
}
});
}
}
其他方法要使用异步时,直接调用fun()方法即可