i am currently working on a project with retrofit, i have multiple WS calls and in order to use them i use the following code:
call.enqueue(new Callback<Object>() {
@Override
public void onResponse(...
In some views i have multiple calls up to 5 or 6 and this was working fine , but when i advanced i nnoticed that i need to make the calls simultaneous so they can go one after the other .
Is there a way to make retrofit calls synchronized so they can go one after the other ?