File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
main/java/com/marklogic/client/datamovement
test/java/com/marklogic/client/test/datamovement/javadocExamples Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public interface BatchListener<T extends Batch<?>> {
3838 * }
3939 * }
4040 * })
41- * .onQueryFailure(queryHostException -> queryHostException .printStackTrace());
41+ * .onQueryFailure(queryBatchException -> queryBatchException .printStackTrace());
4242 * JobTicket ticket = dataMovementManager.startJob(qhb);
4343 * qhb.awaitCompletion();
4444 * dataMovementManager.stopJob(ticket);
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ public interface QueryBatchListener extends BatchListener<QueryBatch> {
3838 * }
3939 * }
4040 * })
41- * .onQueryFailure(queryHostException -> queryHostException .printStackTrace());
41+ * .onQueryFailure(queryBatchException -> queryBatchException .printStackTrace());
4242 * JobTicket ticket = dataMovementManager.startJob(qhb);
4343 * qhb.awaitCompletion();
4444 * dataMovementManager.stopJob(ticket);
Original file line number Diff line number Diff line change 7373 * }
7474 * }
7575 * })
76- * .onQueryFailure(queryHostException -> queryHostException .printStackTrace());
76+ * .onQueryFailure(queryBatchException -> queryBatchException .printStackTrace());
7777 * JobTicket ticket = dataMovementManager.startJob(qhb);
7878 * qhb.awaitCompletion();
7979 * dataMovementManager.stopJob(ticket);
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ public void testQueryBatcher() {
8585 }
8686 }
8787 })
88- .onQueryFailure (queryHostException -> queryHostException .printStackTrace ());
88+ .onQueryFailure (queryBatchException -> queryBatchException .printStackTrace ());
8989 JobTicket ticket = dataMovementManager .startJob (qhb );
9090 qhb .awaitCompletion ();
9191 dataMovementManager .stopJob (ticket );
You can’t perform that action at this time.
0 commit comments