Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there any specific examples or tutorials highlighting the use of Google Guava's Service API? For my scenario, the user needs to run multiple tasks side by side or one after the another (one finishes, the next one begins). A task (service) will be started by the user, and stopped at some point in the future and Guava's Service API seems to fit my needs I am looking for a tutorial or example which shows the implementation to get started.

share|improve this question

1 Answer

up vote 4 down vote accepted

I think the closest thing we have is this page on the wiki.

share|improve this answer
okay so just subclass the AbstractExecutionThreadService like public class UniqueTask extends AbstractExecutionThreadService and it will run on it's own thread? So I don't need to create new Thread() because start() will automatically create a thread for me? How would I get it's current status? – Kim Jong Woo Mar 8 '12 at 20:32
It does start its own thread; you can see it at docs.guava-libraries.googlecode.com/git-history/release/javadoc/… . Its status, like the status of any Service, can be queried with its Service.state() method. – Louis Wasserman Mar 8 '12 at 20:44
So do I save the instances of Service in a temporary Map, and later if I want to stop a specific Service by referencing the temporary? Or is there an internal keeping record of all current running Services and how to find and stop a specific Service? – Kim Jong Woo Mar 8 '12 at 21:30
If you have multiple services that you want to track, then you'll need to do your own tracking -- for which a Map would be an okay solution. Are you expecting services to be running continuously? – Louis Wasserman Mar 9 '12 at 1:48
yes, I just save each running instance in a Map with a unique key to reference it. – Kim Jong Woo Mar 9 '12 at 5:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.