SynchronizedLinkedList<T>
Wisej.Core.SynchronizedLinkedList<T>
Last updated
Wisej.Core.SynchronizedLinkedList<T>
Last updated
Namespace: Wisej.Core
Assembly: Wisej.Framework (2.5.0.0)
Provides a thread-safe collection that contains objects of a type specified by the generic parameter as elements.
Name | Description |
---|---|
T | The type of object contained as items in the thread-safe collection. |
Initializes a new instance of the SynchronizedLinkedList class that contains elements copied from the specified collection and has sufficient capacity to accommodate the number of elements copied and uses the specified syncLock object to synchronize its internal operations.
Name | Type | Description |
---|---|---|
collection | The optional collection whose elements are copied to the new list. | |
syncLock | The optional lock reference. |
Int32: Gets the number of elements contained in the thread-safe collection.
Object: Gets the object used to synchronize access to the thread-safe collection.
Adds a new item at the end of the LinkedList.
Parameter | Type | Description |
---|---|---|
item | The element to be added to the collection. |
Adds a new item after the specified item.
Adds a new item before the specified item.
Adds a new item at the start of the LinkedList.
Parameter | Type | Description |
---|---|---|
item | The element to be added to the collection. |
Removes all items from the collection.
Determines whether the collection contains an element with a specific value.
Parameter | Type | Description |
---|---|---|
item | The object to locate in the collection. |
Returns: Boolean. true if the element value is found in the collection; otherwise false.
Copies the elements of the collection to a specified array, starting at a particular index.
Parameter | Type | Description |
---|---|---|
array | The destination Array for the elements copied from the collection. | |
index | The zero-based index in the array at which copying begins. |
Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire List.
Parameter | Type | Description |
---|---|---|
match | The Predicate delegate that defines the conditions of the element to search for. |
Returns: T. The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value.
Throws:
ArgumentNullException match is null.
Retrieves all the elements that match the conditions defined by the specified predicate.
Parameter | Type | Description |
---|---|---|
match | The Predicate delegate that defines the conditions of the elements to search for. |
Returns: List<T>. A List containing all the elements that match the conditions defined by the specified predicate, if found; otherwise, an empty List.
Throws:
ArgumentNullException match is null.
Parameter | Type | Description |
---|---|---|
action |
Returns an enumerator that iterates through the synchronized collection.
Returns: IEnumerator<T>. An IEnumerator for objects of the type stored in the collection.
Removes the first occurrence of a specified item from the collection.
Parameter | Type | Description |
---|---|---|
item | The object to remove from the collection. |
Returns: Boolean. true if item was successfully removed from the collection; otherwise, false.
Removes all the elements that match the conditions defined by the specified predicate.
Parameter | Type | Description |
---|---|---|
match | The Predicate delegate that defines the conditions of the elements to remove. |
Returns: Int32. The number of elements removed from the List .
Throws:
ArgumentNullException match is null.