Class

com.lightbend.kafka.scala.streams

KStreamS

Related Doc: package streams

Permalink

class KStreamS[K, V] extends AnyRef

Wraps the Java class KStream and delegates method calls to the underlying Java object.

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

Instance Constructors

  1. new KStreamS(inner: KStream[K, V])

    Permalink

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 branch(predicates: (K, V) ⇒ Boolean*): Array[KStreamS[K, V]]

    Permalink
  6. def clone(): AnyRef

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  9. def filter(predicate: (K, V) ⇒ Boolean): KStreamS[K, V]

    Permalink
  10. def filterNot(predicate: (K, V) ⇒ Boolean): KStreamS[K, V]

    Permalink
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flatMap[KR, VR](mapper: (K, V) ⇒ Iterable[(KR, VR)]): KStreamS[KR, VR]

    Permalink
  13. def flatMapValues[VR](processor: (V) ⇒ Iterable[VR]): KStreamS[K, VR]

    Permalink
  14. def foreach(action: (K, V) ⇒ Unit): Unit

    Permalink
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def groupBy[KR](selector: (K, V) ⇒ KR, serialized: Serialized[KR, V]): KGroupedStreamS[KR, V]

    Permalink
  17. def groupBy[KR](selector: (K, V) ⇒ KR): KGroupedStreamS[KR, V]

    Permalink
  18. def groupByKey(serialized: Serialized[K, V]): KGroupedStreamS[K, V]

    Permalink
  19. def groupByKey(): KGroupedStreamS[K, V]

    Permalink
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. val inner: KStream[K, V]

    Permalink
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def join[GK, GV, RV](globalKTable: GlobalKTable[GK, GV], keyValueMapper: (K, V) ⇒ GK, joiner: (V, GV) ⇒ RV): KStreamS[K, RV]

    Permalink
  24. def join[VT, VR](table: KTableS[K, VT], joiner: (V, VT) ⇒ VR, joined: Joined[K, V, VT]): KStreamS[K, VR]

    Permalink
  25. def join[VT, VR](table: KTableS[K, VT], joiner: (V, VT) ⇒ VR): KStreamS[K, VR]

    Permalink
  26. def join[VO, VR](otherStream: KStreamS[K, VO], joiner: (V, VO) ⇒ VR, windows: JoinWindows, joined: Joined[K, V, VO]): KStreamS[K, VR]

    Permalink
  27. def join[VO, VR](otherStream: KStreamS[K, VO], joiner: (V, VO) ⇒ VR, windows: JoinWindows): KStreamS[K, VR]

    Permalink
  28. def leftJoin[GK, GV, RV](globalKTable: GlobalKTable[GK, GV], keyValueMapper: (K, V) ⇒ GK, joiner: (V, GV) ⇒ RV): KStreamS[K, RV]

    Permalink
  29. def leftJoin[VT, VR](table: KTableS[K, VT], joiner: (V, VT) ⇒ VR, joined: Joined[K, V, VT]): KStreamS[K, VR]

    Permalink
  30. def leftJoin[VT, VR](table: KTableS[K, VT], joiner: (V, VT) ⇒ VR): KStreamS[K, VR]

    Permalink
  31. def leftJoin[VO, VR](otherStream: KStreamS[K, VO], joiner: (V, VO) ⇒ VR, windows: JoinWindows, joined: Joined[K, V, VO]): KStreamS[K, VR]

    Permalink
  32. def leftJoin[VO, VR](otherStream: KStreamS[K, VO], joiner: (V, VO) ⇒ VR, windows: JoinWindows): KStreamS[K, VR]

    Permalink
  33. def map[KR, VR](mapper: (K, V) ⇒ (KR, VR)): KStreamS[KR, VR]

    Permalink
  34. def mapValues[VR](mapper: (V) ⇒ VR): KStreamS[K, VR]

    Permalink
  35. def merge(stream: KStreamS[K, V]): KStreamS[K, V]

    Permalink
  36. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  39. def outerJoin[VO, VR](otherStream: KStreamS[K, VO], joiner: (V, VO) ⇒ VR, windows: JoinWindows, joined: Joined[K, V, VO]): KStreamS[K, VR]

    Permalink
  40. def outerJoin[VO, VR](otherStream: KStreamS[K, VO], joiner: (V, VO) ⇒ VR, windows: JoinWindows): KStreamS[K, VR]

    Permalink
  41. def peek(action: (K, V) ⇒ Unit): KStreamS[K, V]

    Permalink
  42. def print(printed: Printed[K, V]): Unit

    Permalink
  43. def process(processorSupplier: () ⇒ Processor[K, V], stateStoreNames: String*): Unit

    Permalink
  44. def selectKey[KR](mapper: (K, V) ⇒ KR): KStreamS[KR, V]

    Permalink
  45. def split(predicate: (K, V) ⇒ Boolean): (KStreamS[K, V], KStreamS[K, V])

    Permalink
  46. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  47. def through(topic: String, produced: Produced[K, V]): KStreamS[K, V]

    Permalink
  48. def through(topic: String): KStreamS[K, V]

    Permalink
  49. def to(topic: String, produced: Produced[K, V]): Unit

    Permalink
  50. def to(topic: String): Unit

    Permalink
  51. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  52. def transform[K1, V1](transformerSupplier: () ⇒ Transformer[K, V, (K1, V1)], stateStoreNames: String*): KStreamS[K1, V1]

    Permalink
  53. def transformValues[VR](valueTransformerSupplier: () ⇒ ValueTransformer[V, VR], stateStoreNames: String*): KStreamS[K, VR]

    Permalink
  54. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped