Interface RemoveDirectedSubGraphListener
-
- All Superinterfaces:
Comparable<IdAble>
,IdAble
,RemoveSubGraphListener
public interface RemoveDirectedSubGraphListener extends RemoveSubGraphListener
A listener interface to be triggered whenever planit entities are removed from the network due to a sub graph being removed. Can be used by any exogenous party to receive a call baack in case it relies on these removed entities- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onRemoveSubGraphEdgeSegment(EdgeSegment edgeSegment)
callback whenever an edge segment is removed from a subgraph it is part of-
Methods inherited from interface org.goplanit.utils.id.IdAble
compareTo, deepClone, getId, idEquals, idHashCode, shallowClone
-
Methods inherited from interface org.goplanit.utils.graph.modifier.RemoveSubGraphListener
onCompletion, onRemoveSubGraphEdge, onRemoveSubGraphVertex
-
-
-
-
Method Detail
-
onRemoveSubGraphEdgeSegment
void onRemoveSubGraphEdgeSegment(EdgeSegment edgeSegment)
callback whenever an edge segment is removed from a subgraph it is part of- Parameters:
edgeSegment
- that is removed
-
-