Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Guava Service tutorial or examples? [closed]

Tags:

java

guava

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.

like image 622
KJW Avatar asked Mar 08 '12 20:03

KJW


People also ask

What is Google Guava used for?

Guava is an open-source “Collection Library” library for Java, developed by Google. It provides utilities for working with Java collections. As you dive deep into Guava you'll notice how it reduces coding errors, facilitates standard coding practices and boost productivity by making code concise and easy to read.

Is guava Cache open-source?

Google Guava is an open-source set of common libraries for Java, mainly developed by Google engineers.

What is Google guava JRE?

Guava is a set of core Java libraries from Google that includes new collection types (such as multimap and multiset), immutable collections, a graph library, and utilities for concurrency, I/O, hashing, caching, primitives, strings, and more!

What is guava EventBus?

The Google Guava EventBus allows publish-subscribe-style communication between components without requiring the components to explicitly register with one another (and thus be aware of each other). The guava-eventbus: component provides integration bridge between Camel and Google Guava EventBus infrastructure.


1 Answers

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

like image 172
Louis Wasserman Avatar answered Oct 13 '22 20:10

Louis Wasserman