我正在尝试从我的actor系统请求外部Web服务。当有新请求进入时,我在webService上执行操作A,B,C
A: Create http connection and Get Auth Token
B: Create http connection and Use A's token Access API and get result
C: Create http connection and Use A and B's result to access API and get result
对于这些我计划让演员A,B和C分开逻辑并使用{{1}}进行沟通..
请注意,我正在为每个进入服务器的请求创建一个HTTP连接,有没有办法将相同的连接传递给actor的A,b和C的实例?