From the course: Building Android Apps with Azure

Unlock this course with a free trial

Join today to access over 22,400 courses taught by industry experts.

Overview of Azure client requests

Overview of Azure client requests

- [Instructor] Interaction with the Azure Backend will be accomplished through Azure requests and Azure queries. We will define the following operations as an Azure request. First, there is creating an item in the Azure table, updating an item, and also the Delete operation. We'll consider all of these as part of the Azure requests. The actual action of the Azure request is contained in the Azure Request Listener. Azure request will unpack the requested action in Azure Request Listener and forward it to the Azure Backend, which is the bookmark app app service in our case. Once the request is complete, we will get back either a success or a fail response from the Azure Backend. We will map this to a status string and pass the result back to our Azure Request Complete Listener. Azure Query will follow a similar structure. We are going to define reading an item from the Azure table as an Azure Query. The actual action of the Azure Query is contained in the Azure Request Listener. Azure…

Contents