Packages

object Subscription

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

Type Members

  1. final case class Manual(topicPartitions: Set[TopicPartition]) extends Subscription with Product with Serializable
  2. final case class Pattern(pattern: Regex) extends Subscription with Product with Serializable
  3. final case class Topics(topics: Set[String]) extends Subscription with Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. def manual(topic: String, partition: Int): Manual

    Create a subscription to a single topic-partition

    Create a subscription to a single topic-partition

    A consumer with this type of subscription does not perform consumer rebalancing

  12. def manual(topicPartitions: (String, Int)*): Manual

    Create a manual subscription to a fixed set of topic-partitions

    Create a manual subscription to a fixed set of topic-partitions

    A consumer with this type of subscription does not perform consumer rebalancing

    topicPartitions

    Tuples of topic and partition

  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. def pattern(pattern: java.util.regex.Pattern): Subscription

    Create a subscription for all topics matching the given pattern

    Create a subscription for all topics matching the given pattern

    pattern

    Pattern

  17. def pattern(pattern: String): Task[Subscription]

    Create a subscription for all topics matching the given pattern

    Create a subscription for all topics matching the given pattern

    pattern

    Pattern to be converted to a Regex

    returns

    The created subscription or failure when the pattern is invalid

  18. def pattern(pattern: Regex): Subscription

    Create a subscription for all topics matching the given pattern

    Create a subscription for all topics matching the given pattern

    pattern

    Pattern

  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. def topics(name: String, names: String*): Subscription

    Create a subscription for one or more topics

    Create a subscription for one or more topics

    name

    Topic to subscribe to

    names

    Additional topics to subscribe to

  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped