Package | Description |
---|---|
com.hazelcast.client.console |
This package contains ClientConsoleApp
|
com.hazelcast.client.impl |
Contains most of the client side HazelcastInstance implementation functionality.
|
com.hazelcast.client.proxy |
This package contains client side proxy implementations of the different Hazelcast data structures
and operation types
|
com.hazelcast.collection.impl.list |
This package contains IList functionality for Hazelcast.
|
com.hazelcast.console |
This package contains classes related to ConsoleApp
|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.instance |
This package contains Hazelcast Instance functionality.
|
com.hazelcast.jca |
This package contains jca functionality
|
com.hazelcast.jmx |
Contains Hazelcast management bean classes.
|
com.hazelcast.mapreduce |
This package contains the MapReduce API definition for Hazelcast.
All map reduce operations running in a distributed manner inside the active Hazelcast cluster. |
Modifier and Type | Method and Description |
---|---|
IList<Object> |
ClientConsoleApp.getList() |
Modifier and Type | Method and Description |
---|---|
<E> IList<E> |
HazelcastClientInstanceImpl.getList(String name) |
<E> IList<E> |
HazelcastClientProxy.getList(String name) |
Modifier and Type | Class and Description |
---|---|
class |
ClientListProxy<E> |
Modifier and Type | Class and Description |
---|---|
class |
ListProxyImpl<E> |
Modifier and Type | Method and Description |
---|---|
IList<Object> |
ConsoleApp.getList() |
Modifier and Type | Method and Description |
---|---|
<E> IList<E> |
HazelcastInstance.getList(String name)
Returns the distributed list instance with the specified name.
|
Modifier and Type | Method and Description |
---|---|
<E> IList<E> |
HazelcastInstanceImpl.getList(String name) |
<E> IList<E> |
HazelcastInstanceProxy.getList(String name) |
Modifier and Type | Method and Description |
---|---|
<E> IList<E> |
HazelcastConnectionImpl.getList(String name) |
Constructor and Description |
---|
ListMBean(IList<?> managedObject,
ManagementService service) |
Modifier and Type | Method and Description |
---|---|
static <V> KeyValueSource<String,V> |
KeyValueSource.fromList(IList<? extends V> list)
A helper method to build a KeyValueSource implementation based on the specified
IList .The key returned by this KeyValueSource implementation is ALWAYS the name of the list itself, whereas the value are the entries of the list, one by one. |
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.