Retrofit2 API端点是否可以安全地在多个线程之间共享

时间:2017-05-12 15:36:57

标签: java android retrofit2

我有以下Retrofit2 API端点。

Retrofit retrofit = builder.build();
MyApi myApi = retrofit.create(MyApi.class);
// Is retrofit2 API end point safe to shared among different threads?
return myApi;

我想知道,Retrofit2 API端点线程安全吗?在多个线程之间共享是否安全?

0 个答案:

没有答案