Packages

class KafkaAdminClient extends AnyRef

Vert.x Kafka Admin client implementation

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

Instance Constructors

  1. new KafkaAdminClient(_asJava: AnyRef)

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 asJava: AnyRef
  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  7. def close(timeout: Long, completionHandler: Handler[AsyncResult[Unit]]): Unit

    Close the admin client * @param timeout timeout to wait for closing

    Close the admin client * @param timeout timeout to wait for closing

    completionHandler

    handler called on operation completed

  8. def close(completionHandler: Handler[AsyncResult[Unit]]): Unit

    Close the admin client * @param completionHandler handler called on operation completed

  9. def close(): Unit

    Close the admin client

  10. def closeFuture(timeout: Long): Future[Unit]

    Like close but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  11. def closeFuture(): Future[Unit]

    Like close but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  12. def createTopics(topics: Buffer[NewTopic], completionHandler: Handler[AsyncResult[Unit]]): Unit

    Creates a batch of new Kafka topics * @param topics topics to create

    Creates a batch of new Kafka topics * @param topics topics to create

    completionHandler

    handler called on operation completed

  13. def createTopicsFuture(topics: Buffer[NewTopic]): Future[Unit]

    Like createTopics but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  14. def deleteTopics(topicNames: Buffer[String], completionHandler: Handler[AsyncResult[Unit]]): Unit

    Deletes a batch of Kafka topics * @param topicNames the names of the topics to delete

    Deletes a batch of Kafka topics * @param topicNames the names of the topics to delete

    completionHandler

    handler called on operation completed

  15. def deleteTopicsFuture(topicNames: Buffer[String]): Future[Unit]

    Like deleteTopics but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. def listConsumerGroups(completionHandler: Handler[AsyncResult[Buffer[ConsumerGroupListing]]]): Unit

    Get the the consumer groups available in the cluster with the default options * @param completionHandler handler called on operation completed with the consumer groups ids

  23. def listConsumerGroupsFuture(): Future[Buffer[ConsumerGroupListing]]

    Like listConsumerGroups but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  24. def listTopics(completionHandler: Handler[AsyncResult[Set[String]]]): Unit

    List the topics available in the cluster with the default options.

    List the topics available in the cluster with the default options. * @param completionHandler handler called on operation completed with the topics set

  25. def listTopicsFuture(): Future[Set[String]]

    Like listTopics but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.

  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped