1 // BSD License (http://www.galagosearch.org/license)
2 package org.galagosearch.tupleflow;
3
4 import java.io.IOException;
5
6 /***
7 *
8 * @author trevor
9 */
10 public interface TypeReader<T> extends ExNihiloSource<T> {
11 T read() throws IOException;
12
13 void run() throws IOException;
14 }