Added in API level 1

SynchronousQueue

open class SynchronousQueue<E : Any!> : AbstractQueue<E>, BlockingQueue<E>, Serializable
kotlin.Any
   ↳ java.util.AbstractCollection<E>
   ↳ java.util.AbstractQueue<E>
   ↳ java.util.concurrent.SynchronousQueue

A blocking queue in which each insert operation must wait for a corresponding remove operation by another thread, and vice versa. A synchronous queue does not have any internal capacity, not even a capacity of one. You cannot peek at a synchronous queue because an element is only present when you try to remove it; you cannot insert an element (using any method) unless another thread is trying to remove it; you cannot iterate as there is nothing to iterate. The head of the queue is the element that the first queued inserting thread is trying to add to the queue; if there is no such queued thread then no element is available for removal and poll() will return null. For purposes of other Collection methods (for example contains), a SynchronousQueue acts as an empty collection. This queue does not permit null elements.

Synchronous queues are similar to rendezvous channels used in CSP and Ada. They are well suited for handoff designs, in which an object running in one thread must sync up with an object running in another thread in order to hand it some information, event, or task.

This class supports an optional fairness policy for ordering waiting producer and consumer threads. By default, this ordering is not guaranteed. However, a queue constructed with fairness set to true grants threads access in FIFO order.

This class and its iterator implement all of the optional methods of the Collection and Iterator interfaces.

This class is a member of the Java Collections Framework.

Summary

Public constructors

Creates a SynchronousQueue with nonfair access policy.

Creates a SynchronousQueue with the specified fairness policy.

Public methods
open Unit

Does nothing.

open Boolean
contains(element: E?)

Always returns false.

open Boolean
containsAll(elements: Collection<E>)

Returns false unless the given collection is empty.

open Int

open Int
drainTo(c: MutableCollection<in E>!, maxElements: Int)

open Boolean

Always returns true.

open MutableIterator<E>

Returns an empty iterator in which hasNext always returns false.

open Boolean
offer(e: E, timeout: Long, unit: TimeUnit!)

Inserts the specified element into this queue, waiting if necessary up to the specified wait time for another thread to receive it.

open Boolean
offer(e: E)

Inserts the specified element into this queue, if another thread is waiting to receive it.

open E?

Always returns null.

open E
poll(timeout: Long, unit: TimeUnit!)

Retrieves and removes the head of this queue, waiting if necessary up to the specified wait time, for another thread to insert it.

open E?

Retrieves and removes the head of this queue, if another thread is currently making an element available.

open Unit
put(e: E)

Adds the specified element to this queue, waiting if necessary for another thread to receive it.

open Int

Always returns zero.

open Boolean
remove(element: E?)

Always returns false.

open Boolean
removeAll(elements: Collection<E>)

Always returns false.

open Boolean
retainAll(elements: Collection<E>)

Always returns false.

open Spliterator<E>

Returns an empty spliterator in which calls to trySplit always return null.

open E

Retrieves and removes the head of this queue, waiting if necessary for another thread to insert it.

open Array<Any!>

Returns a zero-length array.

open Array<T>
toArray(a: Array<T>)

Sets the zeroth element of the specified array to null (if the array has non-zero length) and returns it.

open String

Always returns "[]".

Inherited functions
Properties
open Int

Always returns zero.

Inherited properties

Public constructors

SynchronousQueue

Added in API level 1
SynchronousQueue()

Creates a SynchronousQueue with nonfair access policy.

SynchronousQueue

Added in API level 1
SynchronousQueue(fair: Boolean)

Creates a SynchronousQueue with the specified fairness policy.

Parameters
fair Boolean: if true, waiting threads contend in FIFO order for access; otherwise the order is unspecified.

Public methods

clear

Added in API level 1
open fun clear(): Unit

Does nothing. A SynchronousQueue has no internal capacity.

Exceptions
java.lang.UnsupportedOperationException if the clear operation is not supported by this collection

contains

Added in API level 1
open fun contains(element: E?): Boolean

Always returns false. A SynchronousQueue has no internal capacity.

Parameters
o the element
Return
Boolean false
Exceptions
java.lang.ClassCastException if the class of the specified element is incompatible with this queue (optional)
java.lang.NullPointerException if the specified element is null (optional)

containsAll

Added in API level 1
open fun containsAll(elements: Collection<E>): Boolean

Returns false unless the given collection is empty. A SynchronousQueue has no internal capacity.

Parameters
c the collection
Return
Boolean false unless given collection is empty
Exceptions
java.lang.ClassCastException if the types of one or more elements in the specified collection are incompatible with this collection (optional)
java.lang.NullPointerException if the specified collection contains one or more null elements and this collection does not permit null elements (optional), or if the specified collection is null.

drainTo

Added in API level 1
open fun drainTo(c: MutableCollection<in E>!): Int
Parameters
c MutableCollection<in E>!: the collection to transfer elements into
Return
Int the number of elements transferred
Exceptions
java.lang.UnsupportedOperationException if addition of elements is not supported by the specified collection
java.lang.ClassCastException if the class of an element of this queue prevents it from being added to the specified collection
java.lang.NullPointerException if the specified collection is null
java.lang.IllegalArgumentException if the specified collection is this queue, or some property of an element of this queue prevents it from being added to the specified collection

drainTo

Added in API level 1
open fun drainTo(
    c: MutableCollection<in E>!,
    maxElements: Int
): Int
Parameters
c MutableCollection<in E>!: the collection to transfer elements into
maxElements Int: the maximum number of elements to transfer
Return
Int the number of elements transferred
Exceptions
java.lang.UnsupportedOperationException if addition of elements is not supported by the specified collection
java.lang.ClassCastException if the class of an element of this queue prevents it from being added to the specified collection
java.lang.NullPointerException if the specified collection is null
java.lang.IllegalArgumentException if the specified collection is this queue, or some property of an element of this queue prevents it from being added to the specified collection

isEmpty

Added in API level 1
open fun isEmpty(): Boolean

Always returns true. A SynchronousQueue has no internal capacity.

Return
Boolean true

iterator

Added in API level 1
open fun iterator(): MutableIterator<E>

Returns an empty iterator in which hasNext always returns false.

Return
MutableIterator<E> an empty iterator

offer

Added in API level 1
open fun offer(
    e: E,
    timeout: Long,
    unit: TimeUnit!
): Boolean

Inserts the specified element into this queue, waiting if necessary up to the specified wait time for another thread to receive it.

Parameters
e E: the element to add
timeout Long: how long to wait before giving up, in units of unit
unit TimeUnit!: a TimeUnit determining how to interpret the timeout parameter
Return
Boolean true if successful, or false if the specified waiting time elapses before a consumer appears
Exceptions
java.lang.InterruptedException if interrupted while waiting
java.lang.ClassCastException if the class of the specified element prevents it from being added to this queue
java.lang.NullPointerException if the specified element is null
java.lang.IllegalArgumentException if some property of the specified element prevents it from being added to this queue

offer

Added in API level 1
open fun offer(e: E): Boolean

Inserts the specified element into this queue, if another thread is waiting to receive it.

Parameters
e E: the element to add
Return
Boolean true if the element was added to this queue, else false
Exceptions
java.lang.ClassCastException if the class of the specified element prevents it from being added to this queue
java.lang.NullPointerException if the specified element is null
java.lang.IllegalArgumentException if some property of the specified element prevents it from being added to this queue

peek

Added in API level 1
open fun peek(): E?

Always returns null. A SynchronousQueue does not return elements unless actively waited on.

Return
E? null

poll

Added in API level 1
open fun poll(
    timeout: Long,
    unit: TimeUnit!
): E

Retrieves and removes the head of this queue, waiting if necessary up to the specified wait time, for another thread to insert it.

Parameters
timeout Long: how long to wait before giving up, in units of unit
unit TimeUnit!: a TimeUnit determining how to interpret the timeout parameter
Return
E the head of this queue, or null if the specified waiting time elapses before an element is present
Exceptions
java.lang.InterruptedException if interrupted while waiting

poll

Added in API level 1
open fun poll(): E?

Retrieves and removes the head of this queue, if another thread is currently making an element available.

Return
E? the head of this queue, or null if no element is available

put

Added in API level 1
open fun put(e: E): Unit

Adds the specified element to this queue, waiting if necessary for another thread to receive it.

Parameters
e E: the element to add
Exceptions
java.lang.InterruptedException if interrupted while waiting
java.lang.ClassCastException if the class of the specified element prevents it from being added to this queue
java.lang.NullPointerException if the specified element is null
java.lang.IllegalArgumentException if some property of the specified element prevents it from being added to this queue

remainingCapacity

Added in API level 1
open fun remainingCapacity(): Int

Always returns zero. A SynchronousQueue has no internal capacity.

Return
Int zero

remove

Added in API level 1
open fun remove(element: E?): Boolean

Always returns false. A SynchronousQueue has no internal capacity.

Parameters
o the element to remove
Return
Boolean false
Exceptions
java.lang.ClassCastException if the class of the specified element is incompatible with this queue (optional)
java.lang.NullPointerException if the specified element is null (optional)
java.lang.UnsupportedOperationException if the remove operation is not supported by this collection

removeAll

Added in API level 1
open fun removeAll(elements: Collection<E>): Boolean

Always returns false. A SynchronousQueue has no internal capacity.

Parameters
c the collection
Return
Boolean false
Exceptions
java.lang.UnsupportedOperationException if the removeAll method is not supported by this collection
java.lang.ClassCastException if the types of one or more elements in this collection are incompatible with the specified collection (optional)
java.lang.NullPointerException if this collection contains one or more null elements and the specified collection does not support null elements (optional), or if the specified collection is null

retainAll

Added in API level 1
open fun retainAll(elements: Collection<E>): Boolean

Always returns false. A SynchronousQueue has no internal capacity.

Parameters
c the collection
Return
Boolean false
Exceptions
java.lang.UnsupportedOperationException if the retainAll operation is not supported by this collection
java.lang.ClassCastException if the types of one or more elements in this collection are incompatible with the specified collection (optional)
java.lang.NullPointerException if this collection contains one or more null elements and the specified collection does not permit null elements (optional), or if the specified collection is null

spliterator

Added in API level 24
open fun spliterator(): Spliterator<E>

Returns an empty spliterator in which calls to trySplit always return null.

Return
Spliterator<E> an empty spliterator

take

Added in API level 1
open fun take(): E

Retrieves and removes the head of this queue, waiting if necessary for another thread to insert it.

Return
E the head of this queue
Exceptions
java.lang.InterruptedException if interrupted while waiting

toArray

Added in API level 1
open fun toArray(): Array<Any!>

Returns a zero-length array.

Return
Array<Any!> a zero-length array

toArray

Added in API level 1
open fun <T : Any!> toArray(a: Array<T>): Array<T>

Sets the zeroth element of the specified array to null (if the array has non-zero length) and returns it.

Parameters
<T> the component type of the array to contain the collection
a Array<T>: the array
Return
Array<T> the specified array
Exceptions
java.lang.ArrayStoreException if the runtime type of any element in this collection is not assignable to the runtime component type of the specified array
java.lang.NullPointerException if the specified array is null

toString

Added in API level 1
open fun toString(): String

Always returns "[]".

Return
String "[]"

Properties

size

Added in API level 1
open val size: Int

Always returns zero. A SynchronousQueue has no internal capacity.

Return
Int zero