SynchronizedLinkedList<T>

Wisej.Core.SynchronizedLinkedList<T>

Namespace: Wisej.Core

Assembly: Wisej.Framework (2.2.0.0)

Provides a thread-safe collection that contains objects of a type specified by the generic parameter as elements.

public class SynchronizedLinkedList<T> : ICollection<T>, IEnumerable<T>, IEnumerable, ICollection

Parameters

NameDescription

T

The type of object contained as items in the thread-safe collection.

Constructors

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.

NameTypeDescription

collection

The optional collection whose elements are copied to the new list.

syncLock

The optional lock reference.

Properties

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.

Methods

Adds a new item at the end of the LinkedList.

ParameterTypeDescription

item

The element to be added to the collection.

Adds a new item after the specified item.

ParameterTypeDescription

item

Item to find.

newItem

New item to insert after item .

Adds a new item before the specified item.

ParameterTypeDescription

item

Item to find.

newItem

New item to insert before item .

Adds a new item at the start of the LinkedList.

ParameterTypeDescription

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.

ParameterTypeDescription

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.

ParameterTypeDescription

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.

ParameterTypeDescription

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:

Retrieves all the elements that match the conditions defined by the specified predicate.

ParameterTypeDescription

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:

ParameterTypeDescription

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.

ParameterTypeDescription

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.

ParameterTypeDescription

match

The Predicate delegate that defines the conditions of the elements to remove.

Returns: Int32. The number of elements removed from the List .

Throws:

Last updated