/.metadata/.plugins/org.eclipse.core.resources/.history/a9/90355dd56aa3001e1d98c762f0e1eac2

https://bitbucket.org/fixpoint/connexion · #! · 19 lines · 13 code · 6 blank · 0 comment · 0 complexity · 8af33bf610821116fcd98a9fce9e886e MD5 · raw file

  1. package info.reflectionsofmind.connexion.util;
  2. import java.util.concurrent.Future;
  3. import java.util.concurrent.SynchronousQueue;
  4. public class Waiter<T>
  5. {
  6. private T t;
  7. public void put(final T object)
  8. {
  9. }
  10. public Future<T> get()
  11. {
  12. }
  13. }