A simple example of a webservice object that communicates back to the Activity after completing it's request. The example shows how google gson and retrofit can automatically support asynchronous requests using the retrofit Callback<T>
interface, automati serialization/deserialization to json with a GSON adapter, and notificaton to the Activity via EventBus.
####libraries used:
- Retrofit - REST webservices
- google GSON - Serialization/Deserialization of service responses
- android eventbus Communication between webservice manager & activity
- dagger Dependency injection framework