Where

org.apache.flink.api.JoinedStreams.Where
class Where[KEY](keySelector1: KeySelector[T1, KEY], keyType: TypeInformation[KEY])

A join operation that has a KeySelector defined for the first input.

You need to specify a KeySelector for the second input using equalTo before you can proceed with specifying a WindowAssigner using EqualTo.window.

Attributes

KEY

Type of the key. This must be the same for both inputs

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Concise view

Type members

Classlikes

class EqualTo(keySelector2: KeySelector[T2, KEY])

A join operation that has a KeySelector defined for the first and the second input.

A join operation that has a KeySelector defined for the first and the second input.

A window can now be specified using window.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Value members

Concrete methods

def equalTo(keySelector: T2 => KEY): EqualTo

Specifies a KeySelector for elements from the second input.

Specifies a KeySelector for elements from the second input.

Attributes