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 Adapter
s, Connection
s and Request
s on it.
Now that we have set up the communicator, we have to create an Adapter
, Adapter
s 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
, Request
s 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.