Package | Description |
---|---|
com.hazelcast.console |
This package contains classes related to ConsoleApp
|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.jet |
Hazelcast Jet is a distributed computation engine running on top of
Hazelcast IMDG technology.
|
com.hazelcast.jet.pipeline |
The Pipeline API is Jet's high-level API to build and execute
distributed computation jobs.
|
Modifier and Type | Method and Description |
---|---|
IList<Object> |
ConsoleApp.getList() |
Modifier and Type | Method and Description |
---|---|
<E> IList<E> |
HazelcastInstance.getList(String name)
Creates or returns the distributed list instance with the specified name.
|
Modifier and Type | Method and Description |
---|---|
<E> IList<E> |
JetInstance.getList(String name)
Deprecated.
since 5.0
Use
HazelcastInstance.getList(String) instead. |
Modifier and Type | Method and Description |
---|---|
static <T> BatchSource<T> |
Sources.list(IList<? extends T> list)
Returns a source that emits items retrieved from a Hazelcast
IList . |
static <T> Sink<T> |
Sinks.list(IList<? super T> list)
Returns a sink that adds the items it receives to the specified
Hazelcast
IList . |
Copyright © 2023 Hazelcast, Inc.. All rights reserved.