Package com.impossibl.postgres.protocol
Interface RequestExecutor.ResumeHandler
-
- All Superinterfaces:
RequestExecutor.ErrorHandler
- All Known Subinterfaces:
RequestExecutor.ExecuteHandler
- All Known Implementing Classes:
RequestExecutorHandlers.ExecuteResult
- Enclosing interface:
- RequestExecutor
public static interface RequestExecutor.ResumeHandler extends RequestExecutor.ErrorHandler
Request handler interface for theRequestExecutor.resume(String, int, ResumeHandler)
request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handleComplete(String command, Long rowsAffected, Long insertedOid, RowDataSet rows, List<Notice> notices)
void
handleSuspend(RowDataSet rows, List<Notice> notices)
-
Methods inherited from interface com.impossibl.postgres.protocol.RequestExecutor.ErrorHandler
handleError
-
-
-
-
Method Detail
-
handleComplete
void handleComplete(String command, Long rowsAffected, Long insertedOid, RowDataSet rows, List<Notice> notices) throws IOException
- Throws:
IOException
-
handleSuspend
void handleSuspend(RowDataSet rows, List<Notice> notices) throws IOException
- Throws:
IOException
-
-