如何将 CompleatableFuture 与其父跟踪器 span 关联?
@Scheduled(fixedRate = 100)
fun myJob() {
val taskOne = CompletableFuture.runAsync { runTaskOne() }
val taskTwo = CompletableFuture.runAsync { runTaskTwo() }
CompletableFuture.allOf(runTaskOne, runTaskTwo).join()
}
我得到了整个预定方面的跨度。我需要在里面或周围做什么
fun runTaskOne()
让它工作?