class Tail implements CSProcess{
ChannelInputInt in;
ChannelOutputInt out;
public Tail(ChannelInputInt in,
ChannelOutputInt out){
this.in = in;
this.out = out;
}
public void run(){
in.read();
new Identity(in, out).run();
}
}
Previous slide | Next slide | Back to first slide | View graphic version |