blob: 96e352e1f5207e2d53e91c46144becc111fbb3ed [file] [log] [blame]
package io.s4;
public class MyApp extends App {
final private Stream s1;
final private Stream s2;
final private ProcessingElement pe1;
final private ProcessingElement pe2;
final private Key key;
public MyApp(Stream s1, Stream s2, ProcessingElement pe1,
ProcessingElement pe2, Key key) {
super();
this.s1 = s1;
this.s2 = s2;
this.pe1 = pe1;
this.pe2 = pe2;
this.key = key;
}
@Override
protected void create() {
pe1.setOutput(s1);
pe2.setInput(s1, key);
pe2.setOutput(s2);
}
@Override
protected void init() {
// TODO Auto-generated method stub
}
}