Uses of Class
io.vertx.kafka.client.common.Node
-
Packages that use Node Package Description io.vertx.kafka.admin io.vertx.kafka.client.common -
-
Uses of Node in io.vertx.kafka.admin
Methods in io.vertx.kafka.admin that return Node Modifier and Type Method Description Node
ClusterDescription. getController()
Node
ConsumerGroupDescription. getCoordinator()
Methods in io.vertx.kafka.admin that return types with arguments of type Node Modifier and Type Method Description List<Node>
ClusterDescription. getNodes()
Methods in io.vertx.kafka.admin with parameters of type Node Modifier and Type Method Description ClusterDescription
ClusterDescription. addNode(Node node)
Add a node belonging to this cluster to the current node list.ClusterDescription
ClusterDescription. setController(Node controller)
Set the controller node.ConsumerGroupDescription
ConsumerGroupDescription. setCoordinator(Node coordinator)
Set the consumer group coordinator, or null if the coordinator is not knownMethod parameters in io.vertx.kafka.admin with type arguments of type Node Modifier and Type Method Description ClusterDescription
ClusterDescription. setNodes(List<Node> nodes)
Set the nodes belonging to this clusterConstructors in io.vertx.kafka.admin with parameters of type Node Constructor Description ClusterDescription(String clusterId, Node controller, List<Node> nodes, Set<org.apache.kafka.common.acl.AclOperation> authorizedOperations)
ConstructorConsumerGroupDescription(String groupId, boolean isSimpleConsumerGroup, List<MemberDescription> members, String partitionAssignor, org.apache.kafka.common.ConsumerGroupState state, Node coordinator, Set<org.apache.kafka.common.acl.AclOperation> authorizedOperations)
ConstructorConstructor parameters in io.vertx.kafka.admin with type arguments of type Node Constructor Description ClusterDescription(String clusterId, Node controller, List<Node> nodes, Set<org.apache.kafka.common.acl.AclOperation> authorizedOperations)
Constructor -
Uses of Node in io.vertx.kafka.client.common
Methods in io.vertx.kafka.client.common that return Node Modifier and Type Method Description Node
PartitionInfo. getLeader()
Node
TopicPartitionInfo. getLeader()
Node
Node. setHasRack(boolean hasRack)
Set if this node has a defined rackNode
Node. setHost(String host)
Set the host name for this nodeNode
Node. setId(int id)
Set the node id of this nodeNode
Node. setIdString(String idString)
Set the string representation of the node idNode
Node. setIsEmpty(boolean isEmpty)
Set if this node is emptyNode
Node. setPort(int port)
Set the port for this nodeNode
Node. setRack(String rack)
Set the rack for this nodeMethods in io.vertx.kafka.client.common that return types with arguments of type Node Modifier and Type Method Description List<Node>
PartitionInfo. getInSyncReplicas()
List<Node>
TopicPartitionInfo. getIsr()
List<Node>
PartitionInfo. getReplicas()
List<Node>
TopicPartitionInfo. getReplicas()
Methods in io.vertx.kafka.client.common with parameters of type Node Modifier and Type Method Description PartitionInfo
PartitionInfo. setLeader(Node leader)
Set the node id of the node currently acting as a leaderTopicPartitionInfo
TopicPartitionInfo. setLeader(Node leader)
Set the node id of the node currently acting as a leaderMethod parameters in io.vertx.kafka.client.common with type arguments of type Node Modifier and Type Method Description PartitionInfo
PartitionInfo. setInSyncReplicas(List<Node> inSyncReplicas)
Set the subset of the replicas that are in syncTopicPartitionInfo
TopicPartitionInfo. setIsr(List<Node> isr)
Set the subset of the replicas that are in syncPartitionInfo
PartitionInfo. setReplicas(List<Node> replicas)
Set the complete set of replicas for this partitionTopicPartitionInfo
TopicPartitionInfo. setReplicas(List<Node> replicas)
Set the complete set of replicas for this partitionConstructors in io.vertx.kafka.client.common with parameters of type Node Constructor Description PartitionInfo(List<Node> inSyncReplicas, Node leader, int partition, List<Node> replicas, String topic)
ConstructorTopicPartitionInfo(List<Node> isr, Node leader, int partition, List<Node> replicas)
ConstructorConstructor parameters in io.vertx.kafka.client.common with type arguments of type Node Constructor Description PartitionInfo(List<Node> inSyncReplicas, Node leader, int partition, List<Node> replicas, String topic)
ConstructorTopicPartitionInfo(List<Node> isr, Node leader, int partition, List<Node> replicas)
Constructor
-