PageRenderTime 21ms CodeModel.GetById 12ms app.highlight 8ms RepoModel.GetById 1ms app.codeStats 0ms

/.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
 1package info.reflectionsofmind.connexion.util;
 2
 3import java.util.concurrent.Future;
 4import java.util.concurrent.SynchronousQueue;
 5
 6public class Waiter<T>
 7{
 8	private T t;
 9	
10	public void put(final T object)
11	{
12
13	}
14
15	public Future<T> get()
16	{
17
18	}
19}