Jersey 客户端如何处理异步回调?

JerseyClient how async call backs are handled?

我了解如何在 Jersey 中创建 InvocationCallback。但是我无法获得 Jersey 将使用哪个线程来处理这些回调请求。

它是每次使用Executor Service 还是使用Pool 时都创建一个新线程?

我正在查看 Jersey 文档

https://eclipse-ee4j.github.io/jersey.github.io/documentation/latest/async.html 并浏览了一些文档

https://eclipse-ee4j.github.io/jersey.github.io/apidocs/snapshot/jersey/org/glassfish/jersey/client/ClientProperties.html#ASYNC_THREADPOOL_SIZE

如果我传递 Async_thread_pool_size 那么这个池是否也会用于回调?

谢谢

根据传递的线程池 属性 创建一个线程池,或者每次都创建一个新线程