标签: 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端点线程安全吗?在多个线程之间共享是否安全?