tabular-data-monitor-widget/src/main/java/org/gcube/portlets/user/td/monitorwidget/client/MonitorUpdaterListener.java

85 lines
1.7 KiB
Java
Raw Normal View History

package org.gcube.portlets.user.td.monitorwidget.client;
import org.gcube.portlets.user.td.gwtservice.shared.monitor.OperationMonitor;
import org.gcube.portlets.user.td.widgetcommonevent.shared.TRId;
/**
* Defines a listener for operation progress.
*
* @author "Giancarlo Panichi"
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public interface MonitorUpdaterListener {
/**
* Called when the operation is starting.
*/
public void monitorInitializing();
/**
* Called when there is a progress for the operation.
* @param elaborated the elaborated part.
*/
public void monitorUpdate(float elaborated);
/**
* Called when there is a validate for the operation.
* @param elaborated the elaborated part.
*/
public void monitorValidate(float elaborated);
/**
* Called when the operation is complete.
*/
public void monitorComplete(TRId trId);
/**
* Called when the operation is failed.
*
* @param caught
* @param reason
* @param details
*/
public void monitorFailed(Throwable caught, String reason, String details);
/**
* Called when the operation is stopped
*
* @param trId
* @param reason
* @param details
*/
public void monitorStopped(TRId trId, String reason, String details);
/**
* Called when the operation is aborted
*/
public void monitorAborted();
/**
* Called when the operation is put in background
*/
public void monitorPutInBackground();
/**
* Called when the operation is generating the view
*/
public void monitorGeneratingView();
/**
* Called when the operation montor is changed
*
* @param operationMonitor
*/
public void monitorChanged(OperationMonitor operationMonitor);
}