Package org.apache.kafka.clients.admin
Class DescribeTransactionsResult
java.lang.Object
org.apache.kafka.clients.admin.DescribeTransactionsResult
-
Method Summary
Modifier and TypeMethodDescriptionall()
Get a future which returns a map of the transaction descriptions requested in the respective call toAdmin.describeTransactions(Collection, DescribeTransactionsOptions)
.description
(String transactionalId) Get the description of a specific transactional ID.
-
Method Details
-
description
Get the description of a specific transactional ID.- Parameters:
transactionalId
- the transactional ID to describe- Returns:
- a future which completes when the transaction description of a particular transactional ID is available.
- Throws:
IllegalArgumentException
- if the `transactionalId` was not included in the respective call toAdmin.describeTransactions(Collection, DescribeTransactionsOptions)
.
-
all
Get a future which returns a map of the transaction descriptions requested in the respective call toAdmin.describeTransactions(Collection, DescribeTransactionsOptions)
. If the description fails on any of the transactional IDs in the request, then this future will also fail.- Returns:
- a future which either completes when all transaction descriptions complete or fails if any of the descriptions cannot be obtained
-