Function that consumes results. @author BaseX Team, BSD License @author Christian Gruen @param the type of the input to the operation
| 8 | * @param <T> the type of the input to the operation |
| 9 | */ |
| 10 | @FunctionalInterface |
| 11 | public interface QueryConsumer<T> { |
| 12 | /** |
| 13 | * Performs this operation on the given argument. |
| 14 | * |
| 15 | * @param t the input argument |
| 16 | * @throws QueryException query exception |
| 17 | */ |
| 18 | void accept(T t) throws QueryException; |
| 19 | } |
no outgoing calls
no test coverage detected