Package com.impossibl.postgres.protocol
Interface RequestExecutor.QueryHandler
-
- All Superinterfaces:
RequestExecutor.ErrorHandler
,RequestExecutor.SynchronizedHandler
- All Known Subinterfaces:
RequestExecutor.ExtendedQueryHandler
- All Known Implementing Classes:
RequestExecutorHandlers.CompositeQueryResults
,RequestExecutorHandlers.QueryResult
- Enclosing interface:
- RequestExecutor
public static interface RequestExecutor.QueryHandler extends RequestExecutor.SynchronizedHandler
Request handler interface for theRequestExecutor.query(String, QueryHandler)
request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleComplete(String command, Long rowsAffected, Long insertedOid, TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices)
-
Methods inherited from interface com.impossibl.postgres.protocol.RequestExecutor.ErrorHandler
handleError
-
Methods inherited from interface com.impossibl.postgres.protocol.RequestExecutor.SynchronizedHandler
handleReady
-
-
-
-
Method Detail
-
handleComplete
void handleComplete(String command, Long rowsAffected, Long insertedOid, TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices) throws IOException
- Throws:
IOException
-
-