Example usage for java.util.concurrent TransferQueue interface-usage

List of usage examples for java.util.concurrent TransferQueue interface-usage

Introduction

In this page you can find the example usage for java.util.concurrent TransferQueue interface-usage.

Usage

From source file LinkedTransferQueue.java

/**
 * An unbounded {@link TransferQueue} based on linked nodes.
 * This queue orders elements FIFO (first-in-first-out) with respect
 * to any given producer.  The <em>head</em> of the queue is that
 * element that has been on the queue the longest time for some
 * producer.  The <em>tail</em> of the queue is that element that has