Uses of Interface
org.goplanit.utils.functionalinterface.TriConsumer
-
Packages that use TriConsumer Package Description org.goplanit.assignment.ltm.sltm.consumer org.goplanit.od.demand Contains the definitions of the Origin-Destination Demand classesorg.goplanit.osm.converter.zoning.handler -
-
Uses of TriConsumer in org.goplanit.assignment.ltm.sltm.consumer
Classes in org.goplanit.assignment.ltm.sltm.consumer that implement TriConsumer Modifier and Type Class Description class
PathFlowUpdateConsumer<T extends NetworkFlowUpdateData>
Base Consumer to apply during path based flow update for each combination of origin, destination, and demandclass
PathLinkFlowUpdateConsumer
Consumer to apply during path based loading to update the inflows on the provided raw array by their link segment ids for each combination of origin, destination, and demandclass
PathTurnFlowUpdateConsumer
Consumer to apply during path based turn flow update for each combination of origin, destination, and demand -
Uses of TriConsumer in org.goplanit.od.demand
Methods in org.goplanit.od.demand with parameters of type TriConsumer Modifier and Type Method Description default void
OdDemands. forEachNonZeroOdDemand(OdZones odZones, TriConsumer<OdZone,OdZone,Double> consumer)
Apply the provided consumer to each origin-destination combination found that has non zero demands -
Uses of TriConsumer in org.goplanit.osm.converter.zoning.handler
Methods in org.goplanit.osm.converter.zoning.handler with parameters of type TriConsumer Modifier and Type Method Description protected void
OsmZoningHandlerBase. wrapHandlePtOsmNode(de.topobyte.osm4j.core.model.iface.OsmNode osmNode, TriConsumer<de.topobyte.osm4j.core.model.iface.OsmNode,OsmPtVersionScheme,Map<String,String>> osmNodeConsumer)
Wrap the handling of OSM node by checking if it is eligible (PT specific) and catch any run time PLANit exceptions, if eligible delegate to consumer.protected void
OsmZoningHandlerBase. wrapHandlePtOsmWay(de.topobyte.osm4j.core.model.iface.OsmWay osmWay, TriConsumer<de.topobyte.osm4j.core.model.iface.OsmWay,OsmPtVersionScheme,Map<String,String>> osmWayConsumer)
Wrap the handling of OSM way for OSM zoning by checking if it is eligible and catch any run time PLANit exceptions, if eligible delegate to consumer.
-