class KafkaAdminClient extends AnyRef
Vert.x Kafka Admin client implementation
- Alphabetic
- By Inheritance
- KafkaAdminClient
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new KafkaAdminClient(_asJava: AnyRef)
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- def asJava: AnyRef
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
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
-
def
createTopicsFuture(topics: Buffer[NewTopic]): Future[Unit]
Like createTopics but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
-
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
-
def
deleteTopicsFuture(topicNames: Buffer[String]): Future[Unit]
Like deleteTopics but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
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
-
def
listConsumerGroupsFuture(): Future[Buffer[ConsumerGroupListing]]
Like listConsumerGroups but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
-
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
-
def
listTopicsFuture(): Future[Set[String]]
Like listTopics but returns a scala.concurrent.Future instead of taking an AsyncResultHandler.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )