Uses of Interface
com.sun.corba.ee.spi.transport.concurrent.ConcurrentQueue.Handle
-
Packages that use ConcurrentQueue.Handle Package Description com.sun.corba.ee.impl.transport.concurrent com.sun.corba.ee.impl.transport.connection com.sun.corba.ee.spi.transport.concurrent -
-
Uses of ConcurrentQueue.Handle in com.sun.corba.ee.impl.transport.concurrent
Classes in com.sun.corba.ee.impl.transport.concurrent that implement ConcurrentQueue.Handle Modifier and Type Class Description private class
ConcurrentQueueBlockingImpl.HandleImpl<V>
private class
ConcurrentQueueImpl.HandleImpl<V>
private class
ConcurrentQueueNonBlockingImpl.HandleImpl<V>
Methods in com.sun.corba.ee.impl.transport.concurrent that return ConcurrentQueue.Handle Modifier and Type Method Description ConcurrentQueue.Handle<V>
ConcurrentQueueBlockingImpl. offer(V arg)
Add a new element to the tail of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueueImpl. offer(V arg)
Add a new element to the tail of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueueNonBlockingImpl. offer(V arg)
Add a new element to the tail of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueueBlockingImpl. peek()
ConcurrentQueue.Handle<V>
ConcurrentQueueImpl. peek()
ConcurrentQueue.Handle<V>
ConcurrentQueueNonBlockingImpl. peek()
ConcurrentQueue.Handle<V>
ConcurrentQueueBlockingImpl. poll()
Return an element from the head of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueueImpl. poll()
Return an element from the head of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueueNonBlockingImpl. poll()
Return an element from the head of the queue. -
Uses of ConcurrentQueue.Handle in com.sun.corba.ee.impl.transport.connection
Fields in com.sun.corba.ee.impl.transport.connection declared as ConcurrentQueue.Handle Modifier and Type Field Description (package private) ConcurrentQueue.Handle
OutboundConnectionCacheImpl.ConnectionState. busyHandle
(package private) ConcurrentQueue.Handle
OutboundConnectionCacheImpl.ConnectionState. idleHandle
(package private) ConcurrentQueue.Handle
InboundConnectionCacheBlockingImpl.ConnectionState. reclaimableHandle
(package private) ConcurrentQueue.Handle
InboundConnectionCacheImpl.ConnectionState. reclaimableHandle
(package private) ConcurrentQueue.Handle
OutboundConnectionCacheImpl.ConnectionState. reclaimableHandle
(package private) ConcurrentQueue.Handle<C>
OutboundConnectionState. reclaimableHandle
Methods in com.sun.corba.ee.impl.transport.connection with parameters of type ConcurrentQueue.Handle Modifier and Type Method Description void
OutboundConnectionState. setReclaimableHandle(ConcurrentQueue.Handle<C> handle)
-
Uses of ConcurrentQueue.Handle in com.sun.corba.ee.spi.transport.concurrent
Methods in com.sun.corba.ee.spi.transport.concurrent that return ConcurrentQueue.Handle Modifier and Type Method Description ConcurrentQueue.Handle<V>
ConcurrentQueue. offer(V arg)
Add a new element to the tail of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueue. peek()
Return the handle for the head of the queue.ConcurrentQueue.Handle<V>
ConcurrentQueue. poll()
Return the handle for the head of the queue.
-