Skip to content

Commit 9d1c4ea

Browse files
committed
clarify that for QueryBatcher getFailureEventsCount() == getFailureBatchesCount()
1 parent 845e216 commit 9d1c4ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/marklogic/client/datamovement/JobReport.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public interface JobReport {
3131
long getSuccessEventsCount();
3232
/**
3333
* {@link WriteBatcher} : gets the number of documents that were sent but failed to write<br>
34-
* {@link QueryBatcher} : gets the number of query attempts that failed
34+
* {@link QueryBatcher} : gets the number of query attempts that failed (same as getFailureBatchesCount)
3535
* @return the number of events that failed
3636
*/
3737
long getFailureEventsCount();
@@ -43,7 +43,7 @@ public interface JobReport {
4343
long getSuccessBatchesCount();
4444
/**
4545
* {@link WriteBatcher} : gets the number of batches that the job failed to write<br>
46-
* {@link QueryBatcher} : gets the number of batches of URIs that the job failed to retrieve
46+
* {@link QueryBatcher} : gets the number of query attempts that failed (same as getFailureEventsCount)
4747
* @return the number of batches that failed
4848
*/
4949
long getFailureBatchesCount();

0 commit comments

Comments
 (0)