All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----jcsp.util.buildingblocks.Multiplexer
in[1] +-------------+
------>| |
: | | out
: | Multiplexer |----->
in[n] | |
------>| |
+-------------+
The Multilpexer Process takes data from an array of Channels and sends the data down a single Channel to be decoded by a corresponding Demultiplexer at the other end
| Input Channels | ||
|---|---|---|
| in | java.lang.Object | The in Channel can accept data of any Class. |
| Output Channels | ||
| out | java.lang.Integer,java.lang.Object | The out Channel has a Integer sent down followed by data of the same type as sent down the in Channel. |
public Multiplexer(AltingChannelInput in[],
ChannelOutput out)
public void run()
All Packages Class Hierarchy This Package Previous Next Index