コード例 #1
0
ファイル: ProxyIOProvider.java プロジェクト: JoeHorn/swift-k
 protected ReadBuffer createBuffer() throws FileNotFoundException, InterruptedException {
   return buffer = new CReadBuffer(Buffers.getBuffers(Direction.IN), this);
 }
コード例 #2
0
ファイル: ProxyIOProvider.java プロジェクト: JoeHorn/swift-k
 protected WriteBuffer createWriteBuffer() throws IOException {
   return cwb = new CWriteBuffer(Buffers.getBuffers(Direction.OUT), this);
 }
コード例 #3
0
ファイル: ProxyIOProvider.java プロジェクト: JoeHorn/swift-k
 public void setUpThrottling() {
   Buffers.getBuffers(BUFDIR).getThrottleManager().register(cb);
 }