Package com.qfs.multiversion
Interface IVersionProcedure<V extends IVersion>
-
- Type Parameters:
V- type of the versions
- All Known Implementing Classes:
RetrieveVersionsProcedure
public interface IVersionProcedure<V extends IVersion>A procedure that can be run on aIVersion.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexecute(V version)Executes the procedure on this version.
-
-
-
Method Detail
-
execute
boolean execute(V version)
Executes the procedure on this version.- Parameters:
version- the version- Returns:
trueif the procedure wants to continue with the next version,falseotherwise
-
-