package digital.cabin.ezipc; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; public class EzIPCClient extends EzIPC { public EzIPCClient(String connPath) throws IOException { super(connPath); } public void open() throws IOException { super.in_pipe = new FileInputStream(super.connPath + "_s2c"); super.out_pipe = new FileOutputStream(super.connPath + "_c2s"); } }