Re: [android-developers] Re: Service Implemenration

2011-08-02 Thread Sivaprakash
Great !! So the document says IntentService works as if like "work queue processor" which means queue mechanism is implemented internally and developer need not worry about to control the requests for example if 1000's of intents tries to access it can queue the requests and process them latter? is

[android-developers] Re: Service Implemenration

2011-08-02 Thread dnkoutso
Use an IntentService. It is much easier and less to worry about. It will come up, do the work in a worker thread and then die automatically when the work is done. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Re: Service Implemenration

2011-08-02 Thread Christine
http://developer.android.com/guide/topics/fundamentals/services.html http://developer.android.com/guide/developing/tools/aidl.html There is an example of a service in the api demos. On Aug 2, 1:34 pm, Sivaprakash wrote: > Hi > > I have a back ground service which is responsible for reading conte