Package com.qfs.multiversion
Interface INodeProcedure<N extends IVersionNode<? extends IVersion,N>>
-
- Type Parameters:
N-version nodetype
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface INodeProcedure<N extends IVersionNode<? extends IVersion,N>>
A procedure that can be run on aIVersionNode.- Author:
- ActiveViam
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanexecute(N node)Executes the procedure on a version node.
-
-
-
Method Detail
-
execute
boolean execute(N node)
Executes the procedure on a version node.- Parameters:
node- the version node on which this procedure is executed.- Returns:
trueif the procedure wants to continue with the next version,falseotherwise
-
-