Skip to content

Commit

Permalink
Add IMPORT_SUMMARY event.
Browse files Browse the repository at this point in the history
  • Loading branch information
Blazej Pindelski committed Aug 20, 2014
1 parent ef0c35e commit 9679143
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions components/blitz/src/ome/formats/importer/ImportEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,16 @@ public String toLog() {
}
}

public static class IMPORT_SUMMARY extends ImportEvent {
public final long importTime;
public final int errorCount;

public IMPORT_SUMMARY(long importTime, int errorCount) {
this.importTime = importTime;
this.errorCount = errorCount;
}
}

// count-events

public static class LOADING_IMAGE extends COUNT_EVENT {
Expand Down

0 comments on commit 9679143

Please sign in to comment.