workspace-task-executor-lib.../src/main/java/org/gcube/common/workspacetaskexecutor/shared/BaseTaskComputation.java

38 lines
482 B
Java

/**
*
*/
package org.gcube.common.workspacetaskexecutor.shared;
/**
* The Interface BaseTaskComputation.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* May 3, 2018
*/
public interface BaseTaskComputation {
/**
* Gets the id.
*
* @return the id
*/
String getId();
/**
* Gets the start time.
*
* @return the start time
*/
Long getStartTime();
/**
* Gets the end time.
*
* @return the end time
*/
Long getEndTime();
}