Interface TripleSourceBase.ConnectionOperation<T>
- Type Parameters:
T
-
- Enclosing class:
TripleSourceBase
protected static interface TripleSourceBase.ConnectionOperation<T>
Interface defining the operation to be perform on the connection
Typical pattern
CloseableIteration<BindingSet, QueryEvaluationException> res = withConnection((conn, resultHolder) -> { // do something with conn resultHolder.set(...) });
- Author:
- Andreas Schwarte
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
perform
(RepositoryConnection conn, TripleSourceBase.ResultHolder<T> resultHolder)
-
Method Details
-
perform
-