Package com.hybris.cockpitng.core.async
Interface Operation
-
- All Superinterfaces:
Identifiable
- All Known Implementing Classes:
AbstractOperation,CompareViewController.PartialComparisonOperation
public interface Operation extends Identifiable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description java.lang.Objectexecute(Progress progress)default java.lang.ObjectgetId()Gets the identity of object.java.lang.StringgetLabel()Progress.ProgressTypegetProgressType()booleanisTerminable()
-
-
-
Method Detail
-
getId
default java.lang.Object getId()
Description copied from interface:IdentifiableGets the identity of object.This identity should override
Object.equals(Object)andObject.hashCode()methods.- Specified by:
getIdin interfaceIdentifiable
-
getProgressType
Progress.ProgressType getProgressType()
-
execute
java.lang.Object execute(Progress progress)
-
getLabel
java.lang.String getLabel()
-
isTerminable
boolean isTerminable()
-
-