Skip to content

Commit

Permalink
0001181: Add Outgoing Loads screen for monitoring initial load status
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 18, 2013
1 parent d6ac005 commit f07c603
Show file tree
Hide file tree
Showing 4 changed files with 262 additions and 31 deletions.
@@ -0,0 +1,143 @@
/*
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU Lesser General Public License (the
* "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>.
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jumpmind.symmetric.model;

import java.io.Serializable;
import java.util.Date;

public class OutgoingLoadSummary implements Serializable {

private static final long serialVersionUID = 1L;

private long loadId;
private String nodeId;
private boolean inError;
private int finishedBatchCount;
private int pendingBatchCount;
private long currentBatchId;
private String currentTable;
private long currentDataEventCount;
private String createBy;
private Date createTime;
private Date lastUpdateTime;
private int reloadBatchCount;

public boolean isActive() {
return pendingBatchCount > 0;
}

public void setInError(boolean inError) {
this.inError = inError;
}

public boolean isInError() {
return inError;
}

public long getLoadId() {
return loadId;
}

public void setLoadId(long loadId) {
this.loadId = loadId;
}

public String getNodeId() {
return nodeId;
}

public void setNodeId(String nodeId) {
this.nodeId = nodeId;
}

public int getFinishedBatchCount() {
return finishedBatchCount;
}

public void setFinishedBatchCount(int finishedBatchCount) {
this.finishedBatchCount = finishedBatchCount;
}

public int getPendingBatchCount() {
return pendingBatchCount;
}

public void setPendingBatchCount(int pendingBatchCount) {
this.pendingBatchCount = pendingBatchCount;
}

public long getCurrentBatchId() {
return currentBatchId;
}

public void setCurrentBatchId(long currentBatchId) {
this.currentBatchId = currentBatchId;
}

public String getCurrentTable() {
return currentTable;
}

public void setCurrentTable(String currentTable) {
this.currentTable = currentTable;
}

public long getCurrentDataEventCount() {
return currentDataEventCount;
}

public void setCurrentDataEventCount(long currentDataEventCount) {
this.currentDataEventCount = currentDataEventCount;
}

public Date getCreateTime() {
return createTime;
}

public void setCreateTime(Date createTime) {
this.createTime = createTime;
}

public Date getLastUpdateTime() {
return lastUpdateTime;
}

public void setLastUpdateTime(Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}

public int getReloadBatchCount() {
return reloadBatchCount;
}

public void setReloadBatchCount(int reloadBatchCount) {
this.reloadBatchCount = reloadBatchCount;
}

public void setCreateBy(String createBy) {
this.createBy = createBy;
}

public String getCreateBy() {
return createBy;
}

}
Expand Up @@ -24,6 +24,7 @@
import java.util.List;

import org.jumpmind.db.sql.ISqlTransaction;
import org.jumpmind.symmetric.model.OutgoingLoadSummary;
import org.jumpmind.symmetric.model.OutgoingBatch;
import org.jumpmind.symmetric.model.OutgoingBatchSummary;
import org.jumpmind.symmetric.model.OutgoingBatches;
Expand Down Expand Up @@ -73,6 +74,8 @@ public int countOutgoingBatches(List<String> nodeIds, List<String> channels,
List<OutgoingBatch.Status> statuses);

public List<OutgoingBatch> listOutgoingBatches(List<String> nodeIds, List<String> channels,
List<OutgoingBatch.Status> statuses, long startAtBatchId, int rowsExpected, boolean ascending);
List<OutgoingBatch.Status> statuses, long startAtBatchId, int rowsExpected, boolean ascending);

public List<OutgoingLoadSummary> getLoadSummaries(boolean activeOnly);

}
Expand Down

0 comments on commit f07c603

Please sign in to comment.