blob: 03bc5db9b76e0817a4657e33b92a15bf3faeb6e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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");
}
}
|