当前位置: 首页>>代码示例>>Java>>正文


Java ConcurrentLinkedQueue.isEmpty方法代码示例

本文整理汇总了Java中java.util.concurrent.ConcurrentLinkedQueue.isEmpty方法的典型用法代码示例。如果您正苦于以下问题:Java ConcurrentLinkedQueue.isEmpty方法的具体用法?Java ConcurrentLinkedQueue.isEmpty怎么用?Java ConcurrentLinkedQueue.isEmpty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.util.concurrent.ConcurrentLinkedQueue的用法示例。


在下文中一共展示了ConcurrentLinkedQueue.isEmpty方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: simpleAnalyze

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
public AnalysisResults simpleAnalyze(String text) {
    final AnalyzeOptions parameters = new AnalyzeOptions.Builder()
            .text(text)
            .language("en")
            .features(features)
            .build();
    final ConcurrentLinkedQueue<AnalysisResults> queue = new ConcurrentLinkedQueue<>();
    new Thread(new Runnable() {
        @Override
        public void run() {
            queue.add(service
                    .analyze(parameters)
                    .execute());
        }
    }).start();
    while (queue.isEmpty())
        try {
            Thread.sleep(100, 0);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

    //System.out.println(response);
    return queue.peek();
}
 
开发者ID:zackszhu,项目名称:hack_sjtu_2017,代码行数:26,代码来源:NlpClient.java

示例2: processUpdate

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
/**
 * Process all incoming entity update requests.
 */
private void processUpdate() {
    // TODO: Remove memory leak for updates that belong to non-existing entities
    for(Map.Entry<Integer, Entity> e : entities.entrySet()) {
        Entity entity = e.getValue();
        ConcurrentLinkedQueue<EntityUpdate> updates = updateMap.get(entity.getId());

        while(!updates.isEmpty()) {
            updates.poll().update(entity);
        }
    }
}
 
开发者ID:INAETICS,项目名称:Drones-Simulator,代码行数:15,代码来源:EntityManager.java

示例3: clean

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
public void clean() {
    // the lock protects removal from a concurrent put which could otherwise mutate the
    // queue after it has been removed from the map
    synchronized (unsent) {
        Iterator<ConcurrentLinkedQueue<ClientRequest>> iterator = unsent.values().iterator();
        while (iterator.hasNext()) {
            ConcurrentLinkedQueue<ClientRequest> requests = iterator.next();
            if (requests.isEmpty())
                iterator.remove();
        }
    }
}
 
开发者ID:YMCoding,项目名称:kafka-0.11.0.0-src-with-comment,代码行数:13,代码来源:ConsumerNetworkClient.java

示例4: hasRequests

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
public boolean hasRequests(Node node) {
    ConcurrentLinkedQueue<ClientRequest> requests = unsent.get(node);
    return requests != null && !requests.isEmpty();
}
 
开发者ID:YMCoding,项目名称:kafka-0.11.0.0-src-with-comment,代码行数:5,代码来源:ConsumerNetworkClient.java

示例5: testCacheMultiThreaded

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
public static void testCacheMultiThreaded(final BlockCache toBeTested,
    final int blockSize, final int numThreads, final int numQueries,
    final double passingScore) throws Exception {

  Configuration conf = new Configuration();
  MultithreadedTestUtil.TestContext ctx = new MultithreadedTestUtil.TestContext(
      conf);

  final AtomicInteger totalQueries = new AtomicInteger();
  final ConcurrentLinkedQueue<HFileBlockPair> blocksToTest = new ConcurrentLinkedQueue<HFileBlockPair>();
  final AtomicInteger hits = new AtomicInteger();
  final AtomicInteger miss = new AtomicInteger();

  HFileBlockPair[] blocks = generateHFileBlocks(numQueries, blockSize);
  blocksToTest.addAll(Arrays.asList(blocks));

  for (int i = 0; i < numThreads; i++) {
    TestThread t = new MultithreadedTestUtil.RepeatingTestThread(ctx) {
      @Override
      public void doAnAction() throws Exception {
        if (!blocksToTest.isEmpty()) {
          HFileBlockPair ourBlock = blocksToTest.poll();
          // if we run out of blocks to test, then we should stop the tests.
          if (ourBlock == null) {
            ctx.setStopFlag(true);
            return;
          }
          toBeTested.cacheBlock(ourBlock.blockName, ourBlock.block);
          Cacheable retrievedBlock = toBeTested.getBlock(ourBlock.blockName,
              false, false, true);
          if (retrievedBlock != null) {
            assertEquals(ourBlock.block, retrievedBlock);
            toBeTested.evictBlock(ourBlock.blockName);
            hits.incrementAndGet();
            assertNull(toBeTested.getBlock(ourBlock.blockName, false, false, true));
          } else {
            miss.incrementAndGet();
          }
          totalQueries.incrementAndGet();
        }
      }
    };
    t.setDaemon(true);
    ctx.addThread(t);
  }
  ctx.startThreads();
  while (!blocksToTest.isEmpty() && ctx.shouldRun()) {
    Thread.sleep(10);
  }
  ctx.stop();
  if (hits.get() / ((double) hits.get() + (double) miss.get()) < passingScore) {
    fail("Too many nulls returned. Hits: " + hits.get() + " Misses: "
        + miss.get());
  }
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:56,代码来源:CacheTestUtils.java


注:本文中的java.util.concurrent.ConcurrentLinkedQueue.isEmpty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。