KeyedStream

final case class KeyedStream[T, K](stream: KeyedStream[T, K])(implicit typeInfo: TypeInformation[T], keyInfo: TypeInformation[K])
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def combine(implicit semi: Semigroup[T]): DataStream[T]
def connect[T2, K2](otherKeyedStream: KeyedStream[T2, K2])(implicit tTypeInfo: TypeInformation[T2], kTypeInfo: TypeInformation[K2]): ConnectedStreams[T, T2]
def countWindow(size: Long): WindowedStream[T, K, GlobalWindow]
def countWindow(size: Long, slide: Long): WindowedStream[T, K, GlobalWindow]
def reduce(f: (T, T) => T): DataStream[T]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product