示例#1
0
文件: YPipe.java 项目: narry/jeromq
  //  Pop an incomplete item from the pipe. Returns true is such
  //  item exists, false otherwise.
  public T unwrite() {

    if (f == queue.back_pos()) return null;
    queue.unpush();
    return queue.back();
  }