CompletableFuture.runAsync(() -> {}) (异步执行一个线程)

//异步执行一个线程,不需要获取返回值
CompletableFuture.runAsync(() -> {
    warnBPByMDI(adaptorRecord, iotUser, id);
});

猜你喜欢

转载自blog.csdn.net/xx897115293/article/details/108275123