Interface ITransmissionSimulationStrategy<LinkType,DemandType,ContextType>
- Type Parameters:
LinkType
- the type of linking resourceDemandType
- the type of issued demandContextType
- the type of the context of current user activity
- All Known Implementing Classes:
SimulatedLinkingResourceContainerTransmissionStrategy
public interface ITransmissionSimulationStrategy<LinkType,DemandType,ContextType>
The transmission simulation strategy encapsultes the concrete behavior, how a given demand for a
given link is actually simulated.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
simulateTransmission
(LinkType link, DemandType demand, ContextType context) Simulate a transmission ofdemand
throughlink
in the user context ofcontext
.
-
Method Details
-
simulateTransmission
Simulate a transmission ofdemand
throughlink
in the user context ofcontext
. This method blocks until the transmission is concluded.- Parameters:
link
- the linkdemand
- the calculated demandcontext
- the context of current user activity
-