MCPcopy Create free account
hub / github.com/diyhi/bbs / poll

Method poll

src/main/java/cms/utils/UniqueBlockingQueue.java:144–151  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

142 }
143
144 @Override
145 public T poll() {
146 T e = mBlockingQueue.poll();
147 if (e != null) {
148 mElementSet.remove(e);
149 }
150 return e;
151 }
152
153 @Override
154 public T poll(long timeout, TimeUnit unit) throws InterruptedException {

Callers 1

poll2Method · 0.80

Calls 1

removeMethod · 0.45

Tested by

no test coverage detected