Class

org.apache.flink.streaming.api.scala.extensions.impl.acceptPartialFunctions

OnConnectedStream

Related Doc: package acceptPartialFunctions

Permalink

class OnConnectedStream[IN1, IN2] extends AnyRef

Wraps a connected data stream, allowing to use anonymous partial functions to perform extraction of items in a tuple, case class instance or collection

IN1

The type of the data stream items coming from the first connection

IN2

The type of the data stream items coming from the second connection

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OnConnectedStream
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new OnConnectedStream(stream: ConnectedStreams[IN1, IN2])

    Permalink

    stream

    The wrapped data stream

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def flatMapWith[R](flatMap1: (IN1) ⇒ TraversableOnce[R], flatMap2: (IN2) ⇒ TraversableOnce[R])(implicit arg0: TypeInformation[R]): DataStream[R]

    Permalink

    Applies a CoFlatMap transformation on the connected streams.

    Applies a CoFlatMap transformation on the connected streams.

    The transformation consists of two separate functions, where the first one is called for each element of the first connected stream, and the second one is called for each element of the second connected stream.

    flatMap1

    Function called per element of the first input.

    flatMap2

    Function called per element of the second input.

    returns

    The resulting data stream.

    Annotations
    @PublicEvolving()
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. def keyingBy[K1, K2](key1: (IN1) ⇒ K1, key2: (IN2) ⇒ K2)(implicit arg0: TypeInformation[K1], arg1: TypeInformation[K2]): ConnectedStreams[IN1, IN2]

    Permalink

    Keys the two connected streams together.

    Keys the two connected streams together. After this operation, all elements with the same key from both streams will be sent to the same parallel instance of the transformation functions.

    key1

    The first stream's key function

    key2

    The second stream's key function

    returns

    The key-grouped connected streams

    Annotations
    @PublicEvolving()
  14. def mapWith[R](map1: (IN1) ⇒ R, map2: (IN2) ⇒ R)(implicit arg0: TypeInformation[R]): DataStream[R]

    Permalink

    Applies a CoMap transformation on the connected streams.

    Applies a CoMap transformation on the connected streams.

    The transformation consists of two separate functions, where the first one is called for each element of the first connected stream, and the second one is called for each element of the second connected stream.

    map1

    Function called per element of the first input.

    map2

    Function called per element of the second input.

    returns

    The resulting data stream.

    Annotations
    @PublicEvolving()
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped