Interface IFlowGraphEdgeDataConfigurator
- 
- 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 IFlowGraphEdgeDataConfigurator
A consumer that accepts abuilderfor an edge to be added to the flow graph, and configures theedge dataas required.- Since:
 - 8.0.0
 - Author:
 - XIMA MEDIA GmbH
 - See Also:
 , which has several connect methods that accept such a configurator.,etc. for standard implementations.
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(IFlowGraphEdgeDataBuilder builder)Accepts a builder and should set the appropriate edge data. 
 - 
 
- 
- 
Method Detail
- 
configure
void configure(IFlowGraphEdgeDataBuilder builder)
Accepts a builder and should set the appropriate edge data.- Parameters:
 builder- Builder for the data of an edge in the flow graph.
 
 - 
 
 -