So after watching the very know video on this topic i decided to go with design pattern B. Using a contentprovider with servicehelper.

Basicly i have the following files:
- MyProvider
- MyDatabase
- Mycontract
in the activity i can now get the contentresolver and query the provider. All is working great so far.
Now i need to sync my contentprovider to fetch data from my REST API. Thus i need to implement a service helper service and Rest method. Studying the Google IO app has helped me alot, im novice with android so it's still hard to figure it out.
I see Google uses RemoteHandlers to process the external data, i guess they are the Processor classes in the diagram?
What i dont understand is how i can implement the servicehelper + service part to get the data from the network.
- Where do i call on the service helper?
- what does the service and helper need to do exactly?
- are there any good examples of this exact design pattern?
I have read several topics on stack about this, all suggesting different methods. I found an example wich declares a restprovider and then myProvider has to extend that provider. I dont like those solutions and want to follow this structured design pattern. Im hoping you guys can help me out!