List of usage examples for java.nio.channels Pipe open
public static Pipe open() throws IOException
From source file:org.jenkinsci.remoting.protocol.impl.AckFilterLayerTest.java
@Before public void setUpPipe() throws Exception { clientToServer = Pipe.open(); serverToClient = Pipe.open(); }