ConcurrentLinkedDeque Constructors

Definition

Overloads

ConcurrentLinkedDeque()

Constructs an empty deque.

ConcurrentLinkedDeque(ICollection)

Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.

ConcurrentLinkedDeque(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

ConcurrentLinkedDeque()

Constructs an empty deque.

[Android.Runtime.Register(".ctor", "()V", "")]
public ConcurrentLinkedDeque ();
Attributes

Remarks

Constructs an empty deque.

Java documentation for java.util.concurrent.ConcurrentLinkedDeque.ConcurrentLinkedDeque().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ConcurrentLinkedDeque(ICollection)

Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.

[Android.Runtime.Register(".ctor", "(Ljava/util/Collection;)V", "")]
public ConcurrentLinkedDeque (System.Collections.ICollection? c);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Collection;)V", "")>]
new Java.Util.Concurrent.ConcurrentLinkedDeque : System.Collections.ICollection -> Java.Util.Concurrent.ConcurrentLinkedDeque

Parameters

c
ICollection

the collection of elements to initially contain

Attributes

Remarks

Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.

Java documentation for java.util.concurrent.ConcurrentLinkedDeque.ConcurrentLinkedDeque(java.util.Collection<? extends E>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ConcurrentLinkedDeque(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected ConcurrentLinkedDeque (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Util.Concurrent.ConcurrentLinkedDeque : nativeint * Android.Runtime.JniHandleOwnership -> Java.Util.Concurrent.ConcurrentLinkedDeque

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to