Question regarding Retrofit2:
After you build a Retrofit instance you then call one of the interface (client) methods to "send a request"
For example if you have an interface like this:
@POST("webhook.php")
Call<String> queueCustomer(@Body String queue);
and a Retrofit instance of "client" that you created with the create method, and then you call it like this:
client.queueCustomer(someString)
I'm assuming this is actually making the network request. However, you take the Call object returned from this and call something like:
callObject.enqueue(........)
Are you making a follow up network request when you call enqueue? Is this two network requests or is the first part: client.queueCustomer(someString) just constructing the object that will be send via callObject.enqueue(........)?
Thanks in advance