Uses of Class
com.amalgamasimulation.discreterate.Bunker
Packages that use Bunker
Package
Description
-
Uses of Bunker in com.amalgamasimulation.discreterate
Methods in com.amalgamasimulation.discreterate with parameters of type BunkerModifier and TypeMethodDescriptionvoidBunker.swapContents(Bunker<T> bunker) Swaps the contents of this flow element with the contents ofbunkerBunkerelement.Method parameters in com.amalgamasimulation.discreterate with type arguments of type BunkerModifier and TypeMethodDescriptionvoidBunker.addEmptyHandler(Consumer<Bunker<T>> handler) Adds an action that will be executed every time this Bunker becomes empty.voidBunker.addFullHandler(Consumer<Bunker<T>> handler) Adds an action that will be executed every time this Bunker becomes full.voidBunker.addInRateChangedHandler(Consumer<Bunker<T>> handler) Adds a action that will be executed every time the total inflow rate changes.voidBunker.addOutRateChangedHandler(Consumer<Bunker<T>> handler) Adds a action that will be executed every time the outflow rate changes.voidBunker.removeEmptyHandler(Consumer<Bunker<T>> handler) Removes a previously added empty Bunker action.voidBunker.removeFullHandler(Consumer<Bunker<T>> handler) Removes a previously added full Bunker action.voidBunker.removeInRateChangedHandler(Consumer<Bunker<T>> handler) Removes a previously added total inflow change handler.voidBunker.removeOutRateChangedHandler(Consumer<Bunker<T>> handler) Removes a previously added outflow change handler. -
Uses of Bunker in com.amalgamasimulation.discreterate.flowstatistic
Constructor parameters in com.amalgamasimulation.discreterate.flowstatistic with type arguments of type BunkerModifierConstructorDescriptionFlowStatistics(List<Bunker<T>> bunkers) Constructs a FlowStatistics instance that calculates the collective statistics for the provided list of bunkers, i.e.FlowStatistics(List<Bunker<T>> bunkers, Predicate<T> inflowMaterialFilter, Predicate<T> outflowMaterialFilter) Constructs a FlowStatistics instance that calculates the collective statistics for the provided list of bunkers, with filtered material flows.