Package org.jcsp.plugNplay
Class Regular
java.lang.Object
org.jcsp.plugNplay.Regular
- All Implemented Interfaces:
CSProcess
This process generates a constant stream of Integers at a regular rate.
Process Diagram
_____________ | | out | Regular (n) |-->-- |_____________|
Description
This process generates a constant stream of Integers at a regular rate – at least, it does its best! If the consumption of data is less than the set rate, that rate cannot be sustained. If the consumption failure is only temporary, the set rate will be restored when consumption resumes.The interval (in msecs) defining the output flow rate is given by a constructor argument.
Channel Protocols
Output Channels | ||
---|---|---|
out | java.lang.Integer | A constant value is sent down this channel at a regular rate. |
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final long
private final Integer
private final ChannelOutput
-
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
out
-
n
-
interval
private final long interval
-
-
Constructor Details
-
Regular
Construct the process.- Parameters:
out
- the output channeln
- the value to be generatedinterval
- the interval between outputs (in milliseconds)
-
-
Method Details