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.set |
This package contains ISet 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.internal.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 |
---|---|
ISet<Object> |
ClientConsoleApp.getSet() |
Modifier and Type | Method and Description |
---|---|
<E> ISet<E> |
HazelcastClientInstanceImpl.getSet(String name) |
<E> ISet<E> |
HazelcastClientProxy.getSet(String name) |
Modifier and Type | Class and Description |
---|---|
class |
ClientSetProxy<E>
Proxy implementation of
ISet . |
Modifier and Type | Class and Description |
---|---|
class |
SetProxyImpl<E> |
Modifier and Type | Method and Description |
---|---|
ISet<Object> |
ConsoleApp.getSet() |
Modifier and Type | Method and Description |
---|---|
<E> ISet<E> |
HazelcastInstance.getSet(String name)
Returns the distributed set instance with the specified name.
|
Modifier and Type | Method and Description |
---|---|
<E> ISet<E> |
HazelcastInstanceImpl.getSet(String name) |
<E> ISet<E> |
HazelcastInstanceProxy.getSet(String name) |
Constructor and Description |
---|
SetMBean(ISet managedObject,
ManagementService service) |
Modifier and Type | Method and Description |
---|---|
static <V> KeyValueSource<String,V> |
KeyValueSource.fromSet(ISet<? extends V> set)
Deprecated.
A helper method to build a KeyValueSource implementation based on the specified
ISet .The key returned by this KeyValueSource implementation is ALWAYS the name of the set itself, whereas the value are the entries of the set, one by one. |
Copyright © 2017 Hazelcast, Inc.. All Rights Reserved.