Skip to content

Commit

Permalink
KAFKA-6302: Improve AdmintClient JavaDocs
Browse files Browse the repository at this point in the history
Reviewers: Colin P. McCabe <[email protected]>, Ismael Juma <[email protected]>

Closes apache#4332
  • Loading branch information
mjsax authored Jan 17, 2018
1 parent 11f3db0 commit f6f65a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public CreateTopicsResult createTopics(Collection<NewTopic> newTopics) {
*
* This operation is not transactional so it may succeed for some topics while fail for others.
*
* It may take several seconds after this method returns
* It may take several seconds after {@code CreateTopicsResult} returns
* success for all the brokers to become aware that the topics have been created.
* During this time, {@link AdminClient#listTopics()} and {@link AdminClient#describeTopics(Collection)}
* may not return information about the new topics.
Expand Down Expand Up @@ -138,7 +138,7 @@ public DeleteTopicsResult deleteTopics(Collection<String> topics) {
*
* This operation is not transactional so it may succeed for some topics while fail for others.
*
* It may take several seconds after AdminClient#deleteTopics returns
* It may take several seconds after the {@code DeleteTopicsResult} returns
* success for all the brokers to become aware that the topics are gone.
* During this time, AdminClient#listTopics and AdminClient#describeTopics
* may continue to return information about the deleted topics.
Expand Down

0 comments on commit f6f65a7

Please sign in to comment.