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


Java ConcurrentLinkedQueue.offer方法代码示例

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


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

示例1: returnArrayToPool

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
/**
 * Recycles the specified byte array, so that future requests for a byte array of the same size may be fulfilled
 * without allocating a new one.
 */
public static void returnArrayToPool(byte[] b)
{
	ConcurrentLinkedQueue<byte[]> q = arrayPool.get(b.length);
	if (q == null)
	{
		q = new ConcurrentLinkedQueue<byte[]>();

		ConcurrentLinkedQueue<byte[]> q2 = arrayPool.putIfAbsent(b.length, q);
		if (q2 != null)
			q = q2;
	}
	q.offer(b);
	//int pooled = pooledCount.incrementAndGet();
	//System.out.println(pooled);
}
 
开发者ID:bp2008,项目名称:blueirisviewer,代码行数:20,代码来源:ByteArrayPool.java

示例2: longIdleHeartBeat

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
/**
 * check if the connection is not be used for a while & do connection heart beat
 *
 * @param linkedQueue
 * @param hearBeatTime
 */
private void longIdleHeartBeat(ConcurrentLinkedQueue<BackendConnection> linkedQueue, long hearBeatTime) {
    long length = linkedQueue.size();
    for (int i = 0; i < length; i++) {
        BackendConnection con = linkedQueue.poll();
        if (con.isClosedOrQuit()) {
            continue;
        } else if (con.getLastTime() < hearBeatTime) { //if the connection is idle for a long time
            con.setBorrowed(true);
            new ConnectionHeartBeatHandler().doHeartBeat(con);
        } else {
            linkedQueue.offer(con);
            break;
        }
    }
}
 
开发者ID:actiontech,项目名称:dble,代码行数:22,代码来源:PhysicalDatasource.java

示例3: testOfferNull

import java.util.concurrent.ConcurrentLinkedQueue; //导入方法依赖的package包/类
/**
 * offer(null) throws NPE
 */
public void testOfferNull() {
    ConcurrentLinkedQueue q = new ConcurrentLinkedQueue();
    try {
        q.offer(null);
        shouldThrow();
    } catch (NullPointerException success) {}
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:11,代码来源:ConcurrentLinkedQueueTest.java


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