
com.marklogic.client.datamovement.impl.QueryBatchImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-client-api Show documentation
Show all versions of marklogic-client-api Show documentation
The official MarkLogic Java client API.
The newest version!
/*
* Copyright © 2024 MarkLogic Corporation. All Rights Reserved.
*/
package com.marklogic.client.datamovement.impl;
import java.util.Calendar;
import com.marklogic.client.DatabaseClient;
import com.marklogic.client.datamovement.Batch;
import com.marklogic.client.datamovement.Forest;
import com.marklogic.client.datamovement.JobTicket;
import com.marklogic.client.datamovement.QueryBatch;
import com.marklogic.client.datamovement.QueryBatcher;
import com.marklogic.client.query.QueryDefinition;
public class QueryBatchImpl extends BatchImpl implements QueryBatch {
private QueryBatcher batcher;
private long jobResultsSoFar;
private long forestBatchNumber;
private long forestResultsSoFar;
private Forest forest;
private long serverTimestamp;
private boolean isLastBatch = false;
public QueryBatchImpl() {
super(String.class);
}
@Override
public QueryBatcher getBatcher() {
return batcher;
}
public QueryBatchImpl withBatcher(QueryBatcher batcher) {
this.batcher = batcher;
return this;
}
@Override
public QueryBatchImpl withItems(String[] items) {
super.withItems(items);
return this;
}
@Override
public QueryBatchImpl withClient(DatabaseClient client) {
super.withClient(client);
return this;
}
@Override
public QueryBatchImpl withTimestamp(Calendar timestamp) {
super.withTimestamp(timestamp);
return this;
}
@Override
public QueryBatchImpl withJobBatchNumber(long jobBatchNumber) {
super.withJobBatchNumber(jobBatchNumber);
return this;
}
@Override
public QueryBatchImpl withJobTicket(JobTicket jobTicket) {
super.withJobTicket(jobTicket);
return this;
}
@Override
public Forest getForest() {
return forest;
}
public QueryBatchImpl withForest(Forest forest) {
this.forest = forest;
return this;
}
@Override
public long getJobResultsSoFar() {
return jobResultsSoFar;
}
public QueryBatchImpl withJobResultsSoFar(long jobResultsSoFar) {
this.jobResultsSoFar = jobResultsSoFar;
return this;
}
@Override
public long getForestBatchNumber() {
return forestBatchNumber;
}
public QueryBatchImpl withForestBatchNumber(long forestBatchNumber) {
this.forestBatchNumber = forestBatchNumber;
return this;
}
@Override
public long getForestResultsSoFar() {
return forestResultsSoFar;
}
@Override
public String getLastUriForForest() {
String[] items = getItems();
if (items == null || items.length == 0) {
return null;
}
return items[items.length - 1];
}
public QueryBatchImpl withForestResultsSoFar(long forestResultsSoFar) {
this.forestResultsSoFar = forestResultsSoFar;
return this;
}
@Override
public long getServerTimestamp() {
return serverTimestamp;
}
public QueryBatchImpl withServerTimestamp(long serverTimestamp) {
this.serverTimestamp = serverTimestamp;
return this;
}
public QueryBatchImpl withIsLastBatch(boolean isLastBatch) {
this.isLastBatch = isLastBatch;
return this;
}
public boolean getIsLastBatch() {
return this.isLastBatch;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy