Updated OperationMonitor
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-csv-export-widget@99328 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
2a4f736d1b
commit
8219fe48ad
|
@ -145,7 +145,7 @@ public class CSVOperationInProgressCard extends WizardCard implements
|
|||
}
|
||||
|
||||
@Override
|
||||
public void monitorComplete(final TRId trId) {
|
||||
public void monitorComplete(final TRId trId, OperationMonitor operationMonitor) {
|
||||
|
||||
Command sayComplete = new Command() {
|
||||
public void execute() {
|
||||
|
@ -169,7 +169,7 @@ public class CSVOperationInProgressCard extends WizardCard implements
|
|||
|
||||
@Override
|
||||
public void monitorFailed(Throwable caught, String reason,
|
||||
String failureDetails) {
|
||||
String failureDetails, OperationMonitor operationMonitor) {
|
||||
if (caught instanceof TDGWTSessionExpiredException) {
|
||||
getEventBus()
|
||||
.fireEvent(
|
||||
|
@ -187,7 +187,7 @@ public class CSVOperationInProgressCard extends WizardCard implements
|
|||
}
|
||||
|
||||
@Override
|
||||
public void monitorStopped(final TRId trId, String reason, String details) {
|
||||
public void monitorStopped(final TRId trId, String reason, String details, OperationMonitor operationMonitor) {
|
||||
|
||||
Command sayComplete = new Command() {
|
||||
public void execute() {
|
||||
|
|
Loading…
Reference in New Issue