Interface IList<E>

Type Parameters:
E - the type of elements maintained by this list
All Superinterfaces:
Collection<E>, DistributedObject, ICollection<E>, Iterable<E>, List<E>

public interface IList<E>
extends List<E>, ICollection<E>
Concurrent, distributed implementation of List.

The Hazelcast IList is not a partitioned data-structure. Entire contents of an IList is stored on a single machine (and in the backup). The IList will not scale by adding more members to the cluster.

Supports split brain protection SplitBrainProtectionConfig since 3.10 in cluster versions 3.10 and higher.

See Also:
List