This walkthrough consists of a few different tutorials, please follow the following tutorials in order
First, we have to create a Communicator, once we have this we can register Adapters, Connections and Requests on it.
Now that we have set up the communicator, we have to create an Adapter, Adapters are used to do the actual transport of data from and to the server.
After creating the Adapter, we must create a Connection, a Connection is a combination of an Adapter and a url.
The last object we have to create is a Request, Requests are blueprints for requests to a server, it uses a Connection and properties such as 'method' and 'route' to do the actual request.
This is the end of the walkthrough.