| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Processor |
|
| 0.0;0 |
| 1 | // BSD License (http://www.galagosearch.org/license) | |
| 2 | ||
| 3 | package org.galagosearch.tupleflow; | |
| 4 | ||
| 5 | import java.io.IOException; | |
| 6 | ||
| 7 | public interface Processor<T> extends Step { | |
| 8 | public void process(T object) throws IOException; | |
| 9 | public void close() throws IOException; | |
| 10 | } |