A B C E F G I J M O P R S T W 

A

apply(TimeWindow, Iterable<Integer>, Collector<Double[]>) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.PartialModelBuilder
 
apply(Long, Window, Iterable<Tuple2<Long, Long>>, Collector<Tuple2<Long, Long>>) - Method in class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample.SummingWindowFunction
 

B

buildPartialModel(Iterable<Integer>) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.PartialModelBuilder
 

C

cancel() - Method in class org.apache.flink.streaming.examples.join.WindowJoin.GradeSource
 
cancel() - Method in class org.apache.flink.streaming.examples.join.WindowJoin.SalarySource
 
cancel() - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.FiniteNewDataSource
 
cancel() - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.FiniteTrainingDataSource
 
CAR_DATA - Static variable in class org.apache.flink.streaming.examples.windowing.util.TopSpeedWindowingExampleData
 

E

EXPECTED - Static variable in class org.apache.flink.streaming.examples.windowing.util.SessionWindowingData
 
extractTimestamp(Integer, long) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.LinearTimestamp
 
extractWatermark(Integer, long) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.LinearTimestamp
 

F

flatMap(String, Collector<Tuple2<String, Integer>>) - Method in class org.apache.flink.streaming.examples.twitter.TwitterStream.SelectEnglishAndTokenizeFlatMap
Select the language from the incoming JSON text
flatMap(String, Collector<PojoExample.Word>) - Method in class org.apache.flink.streaming.examples.wordcount.PojoExample.Tokenizer
 
flatMap(String, Collector<Tuple2<String, Integer>>) - Method in class org.apache.flink.streaming.examples.wordcount.WordCount.Tokenizer
 

G

getBatchModel() - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.Predictor
 
getCurrentWatermark() - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.LinearTimestamp
 
getFrequency() - Method in class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
getKey(Type) - Method in class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample.FirstFieldKeyExtractor
 
getWord() - Method in class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
GRADES_INPUT - Static variable in class org.apache.flink.streaming.examples.join.util.WindowJoinData
 
GroupedProcessingTimeWindowExample - Class in org.apache.flink.streaming.examples.windowing
 
GroupedProcessingTimeWindowExample() - Constructor for class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample
 
GroupedProcessingTimeWindowExample.FirstFieldKeyExtractor<Type extends org.apache.flink.api.java.tuple.Tuple,Key> - Class in org.apache.flink.streaming.examples.windowing
 
GroupedProcessingTimeWindowExample.FirstFieldKeyExtractor() - Constructor for class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample.FirstFieldKeyExtractor
 
GroupedProcessingTimeWindowExample.SummingReducer - Class in org.apache.flink.streaming.examples.windowing
 
GroupedProcessingTimeWindowExample.SummingReducer() - Constructor for class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample.SummingReducer
 
GroupedProcessingTimeWindowExample.SummingWindowFunction - Class in org.apache.flink.streaming.examples.windowing
 
GroupedProcessingTimeWindowExample.SummingWindowFunction() - Constructor for class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample.SummingWindowFunction
 

I

IncrementalLearningSkeleton - Class in org.apache.flink.streaming.examples.ml
Skeleton for incremental machine learning algorithm consisting of a pre-computed model, which gets updated for the new inputs and new input data for which the job provides predictions.
IncrementalLearningSkeleton() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton
 
IncrementalLearningSkeleton.FiniteNewDataSource - Class in org.apache.flink.streaming.examples.ml
Feeds new data for newData.
IncrementalLearningSkeleton.FiniteNewDataSource() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.FiniteNewDataSource
 
IncrementalLearningSkeleton.FiniteTrainingDataSource - Class in org.apache.flink.streaming.examples.ml
Feeds new training data for the partial model builder.
IncrementalLearningSkeleton.FiniteTrainingDataSource() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.FiniteTrainingDataSource
 
IncrementalLearningSkeleton.LinearTimestamp - Class in org.apache.flink.streaming.examples.ml
 
IncrementalLearningSkeleton.LinearTimestamp() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.LinearTimestamp
 
IncrementalLearningSkeleton.PartialModelBuilder - Class in org.apache.flink.streaming.examples.ml
Builds up-to-date partial models on new training data.
IncrementalLearningSkeleton.PartialModelBuilder() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.PartialModelBuilder
 
IncrementalLearningSkeleton.Predictor - Class in org.apache.flink.streaming.examples.ml
Creates newData using the model produced in batch-processing and the up-to-date partial model.
IncrementalLearningSkeleton.Predictor() - Constructor for class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.Predictor
 
IncrementalLearningSkeletonData - Class in org.apache.flink.streaming.examples.ml.util
 
INPUT_PAIRS - Static variable in class org.apache.flink.streaming.examples.iteration.util.IterateExampleData
 
IterateExample - Class in org.apache.flink.streaming.examples.iteration
Example illustrating iterations in Flink streaming.
IterateExample() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample
 
IterateExample.InputMap - Class in org.apache.flink.streaming.examples.iteration
Map the inputs so that the next Fibonacci numbers can be calculated while preserving the original input tuple A counter is attached to the tuple and incremented in every iteration step
IterateExample.InputMap() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample.InputMap
 
IterateExample.MySelector - Class in org.apache.flink.streaming.examples.iteration
OutputSelector testing which tuple needs to be iterated again.
IterateExample.MySelector() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample.MySelector
 
IterateExample.OutputMap - Class in org.apache.flink.streaming.examples.iteration
Giving back the input pair and the counter
IterateExample.OutputMap() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample.OutputMap
 
IterateExample.Step - Class in org.apache.flink.streaming.examples.iteration
Iteration step function that calculates the next Fibonacci number
IterateExample.Step() - Constructor for class org.apache.flink.streaming.examples.iteration.IterateExample.Step
 
IterateExampleData - Class in org.apache.flink.streaming.examples.iteration.util
 

J

join(Tuple3<Long, String, Integer>, Tuple3<Long, String, Integer>) - Method in class org.apache.flink.streaming.examples.join.WindowJoin.MyJoinFunction
 

M

main(String[]) - Static method in class org.apache.flink.streaming.examples.iteration.IterateExample
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.join.WindowJoin
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.socket.SocketTextStreamWordCount
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.twitter.TwitterStream
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.windowing.SessionWindowing
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.windowing.TopSpeedWindowing
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.windowing.WindowWordCount
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.wordcount.PojoExample
 
main(String[]) - Static method in class org.apache.flink.streaming.examples.wordcount.WordCount
 
map(Tuple2<Integer, Integer>) - Method in class org.apache.flink.streaming.examples.iteration.IterateExample.InputMap
 
map(Tuple5<Integer, Integer, Integer, Integer, Integer>) - Method in class org.apache.flink.streaming.examples.iteration.IterateExample.OutputMap
 
map(Tuple5<Integer, Integer, Integer, Integer, Integer>) - Method in class org.apache.flink.streaming.examples.iteration.IterateExample.Step
 
map(String) - Method in class org.apache.flink.streaming.examples.join.WindowJoin.MySourceMap
 
map1(Integer) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.Predictor
 
map2(Double[]) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.Predictor
 

O

open(Configuration) - Method in class org.apache.flink.streaming.examples.join.WindowJoin.SalarySource
 
org.apache.flink.streaming.examples.iteration - package org.apache.flink.streaming.examples.iteration
 
org.apache.flink.streaming.examples.iteration.util - package org.apache.flink.streaming.examples.iteration.util
 
org.apache.flink.streaming.examples.join - package org.apache.flink.streaming.examples.join
 
org.apache.flink.streaming.examples.join.util - package org.apache.flink.streaming.examples.join.util
 
org.apache.flink.streaming.examples.ml - package org.apache.flink.streaming.examples.ml
 
org.apache.flink.streaming.examples.ml.util - package org.apache.flink.streaming.examples.ml.util
 
org.apache.flink.streaming.examples.socket - package org.apache.flink.streaming.examples.socket
 
org.apache.flink.streaming.examples.twitter - package org.apache.flink.streaming.examples.twitter
 
org.apache.flink.streaming.examples.twitter.util - package org.apache.flink.streaming.examples.twitter.util
 
org.apache.flink.streaming.examples.windowing - package org.apache.flink.streaming.examples.windowing
 
org.apache.flink.streaming.examples.windowing.util - package org.apache.flink.streaming.examples.windowing.util
 
org.apache.flink.streaming.examples.wordcount - package org.apache.flink.streaming.examples.wordcount
 

P

PojoExample - Class in org.apache.flink.streaming.examples.wordcount
This example shows an implementation of WordCount without using the Tuple2 type, but a custom class.
PojoExample() - Constructor for class org.apache.flink.streaming.examples.wordcount.PojoExample
 
PojoExample.Tokenizer - Class in org.apache.flink.streaming.examples.wordcount
Implements the string tokenizer that splits sentences into words as a user-defined FlatMapFunction.
PojoExample.Tokenizer() - Constructor for class org.apache.flink.streaming.examples.wordcount.PojoExample.Tokenizer
 
PojoExample.Word - Class in org.apache.flink.streaming.examples.wordcount
This is the POJO (Plain Old Java Object) that is being used for all the operations.
PojoExample.Word() - Constructor for class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
PojoExample.Word(String, int) - Constructor for class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
predict(Integer) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.Predictor
 

R

reduce(Tuple2<Long, Long>, Tuple2<Long, Long>) - Method in class org.apache.flink.streaming.examples.windowing.GroupedProcessingTimeWindowExample.SummingReducer
 
RESULTS - Static variable in class org.apache.flink.streaming.examples.iteration.util.IterateExampleData
 
RESULTS - Static variable in class org.apache.flink.streaming.examples.ml.util.IncrementalLearningSkeletonData
 
run(SourceFunction.SourceContext<Tuple3<Long, String, Integer>>) - Method in class org.apache.flink.streaming.examples.join.WindowJoin.GradeSource
 
run(SourceFunction.SourceContext<Tuple3<Long, String, Integer>>) - Method in class org.apache.flink.streaming.examples.join.WindowJoin.SalarySource
 
run(SourceFunction.SourceContext<Integer>) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.FiniteNewDataSource
 
run(SourceFunction.SourceContext<Integer>) - Method in class org.apache.flink.streaming.examples.ml.IncrementalLearningSkeleton.FiniteTrainingDataSource
 

S

SALARIES_INPUT - Static variable in class org.apache.flink.streaming.examples.join.util.WindowJoinData
 
select(Tuple5<Integer, Integer, Integer, Integer, Integer>) - Method in class org.apache.flink.streaming.examples.iteration.IterateExample.MySelector
 
SessionWindowing - Class in org.apache.flink.streaming.examples.windowing
 
SessionWindowing() - Constructor for class org.apache.flink.streaming.examples.windowing.SessionWindowing
 
SessionWindowingData - Class in org.apache.flink.streaming.examples.windowing.util
 
setFrequency(Integer) - Method in class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
setWord(String) - Method in class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
SocketTextStreamWordCount - Class in org.apache.flink.streaming.examples.socket
This example shows an implementation of WordCount with data from a text socket.
SocketTextStreamWordCount() - Constructor for class org.apache.flink.streaming.examples.socket.SocketTextStreamWordCount
 
STREAMING_COUNTS_AS_TUPLES - Static variable in class org.apache.flink.streaming.examples.twitter.util.TwitterStreamData
 

T

TEXTS - Static variable in class org.apache.flink.streaming.examples.twitter.util.TwitterStreamData
 
TOP_CASE_CLASS_SPEEDS - Static variable in class org.apache.flink.streaming.examples.windowing.util.TopSpeedWindowingExampleData
 
TOP_SPEEDS - Static variable in class org.apache.flink.streaming.examples.windowing.util.TopSpeedWindowingExampleData
 
TopSpeedWindowing - Class in org.apache.flink.streaming.examples.windowing
An example of grouped stream windowing where different eviction and trigger policies can be used.
TopSpeedWindowing() - Constructor for class org.apache.flink.streaming.examples.windowing.TopSpeedWindowing
 
TopSpeedWindowingExampleData - Class in org.apache.flink.streaming.examples.windowing.util
 
toString() - Method in class org.apache.flink.streaming.examples.wordcount.PojoExample.Word
 
TwitterStream - Class in org.apache.flink.streaming.examples.twitter
Implements the "TwitterStream" program that computes a most used word occurrence over JSON files in a streaming fashion.
TwitterStream() - Constructor for class org.apache.flink.streaming.examples.twitter.TwitterStream
 
TwitterStream.SelectEnglishAndTokenizeFlatMap - Class in org.apache.flink.streaming.examples.twitter
Makes sentences from English tweets.
TwitterStream.SelectEnglishAndTokenizeFlatMap() - Constructor for class org.apache.flink.streaming.examples.twitter.TwitterStream.SelectEnglishAndTokenizeFlatMap
 
TwitterStreamData - Class in org.apache.flink.streaming.examples.twitter.util
 

W

WindowJoin - Class in org.apache.flink.streaming.examples.join
Example illustrating join over sliding windows of streams in Flink.
WindowJoin() - Constructor for class org.apache.flink.streaming.examples.join.WindowJoin
 
WindowJoin.GradeSource - Class in org.apache.flink.streaming.examples.join
Continuously emit tuples with random names and integers (grades).
WindowJoin.GradeSource() - Constructor for class org.apache.flink.streaming.examples.join.WindowJoin.GradeSource
 
WindowJoin.MyJoinFunction - Class in org.apache.flink.streaming.examples.join
 
WindowJoin.MyJoinFunction() - Constructor for class org.apache.flink.streaming.examples.join.WindowJoin.MyJoinFunction
 
WindowJoin.MySourceMap - Class in org.apache.flink.streaming.examples.join
 
WindowJoin.MySourceMap() - Constructor for class org.apache.flink.streaming.examples.join.WindowJoin.MySourceMap
 
WindowJoin.SalarySource - Class in org.apache.flink.streaming.examples.join
Continuously emit tuples with random names and integers (salaries).
WindowJoin.SalarySource() - Constructor for class org.apache.flink.streaming.examples.join.WindowJoin.SalarySource
 
WindowJoinData - Class in org.apache.flink.streaming.examples.join.util
 
WindowWordCount - Class in org.apache.flink.streaming.examples.windowing
Implements a windowed version of the streaming "WordCount" program.
WindowWordCount() - Constructor for class org.apache.flink.streaming.examples.windowing.WindowWordCount
 
WordCount - Class in org.apache.flink.streaming.examples.wordcount
Implements the "WordCount" program that computes a simple word occurrence histogram over text files in a streaming fashion.
WordCount() - Constructor for class org.apache.flink.streaming.examples.wordcount.WordCount
 
WordCount.Tokenizer - Class in org.apache.flink.streaming.examples.wordcount
Implements the string tokenizer that splits sentences into words as a user-defined FlatMapFunction.
WordCount.Tokenizer() - Constructor for class org.apache.flink.streaming.examples.wordcount.WordCount.Tokenizer
 
A B C E F G I J M O P R S T W 

Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.