Interface | Description |
---|---|
ExecutionEnvironmentFactory |
Factory class for execution environments.
|
Class | Description |
---|---|
ClosureCleaner | |
CollectionEnvironment | |
DataSet<T> |
A DataSet represents a collection of elements of the same type.
A DataSet can be transformed into another DataSet by applying a transformation as for example DataSet.map(org.apache.flink.api.common.functions.MapFunction) ,
DataSet.reduce(org.apache.flink.api.common.functions.ReduceFunction) ,
DataSet.join(DataSet) , or
DataSet.coGroup(DataSet) .
|
ExecutionEnvironment |
The ExecutionEnvironment is the context in which a program is executed.
|
LocalEnvironment |
An
ExecutionEnvironment that runs the program locally, multi-threaded, in the JVM where the
environment is instantiated. |
RemoteEnvironment |
An
ExecutionEnvironment that sends programs to a cluster for execution. |
Utils |
Utility class that contains helper methods to work with Java APIs.
|
Utils.CollectHelper<T> | |
Utils.CountHelper<T> |
Copyright © 2014–2015 The Apache Software Foundation. All rights reserved.