Skip to content

Commit

Permalink
fix checkstyle for TableViewBuilder (apache#13727)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlu90 authored Jan 12, 2022
1 parent c839fe4 commit c1a31fd
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@

package org.apache.pulsar.client.api;

import org.apache.pulsar.common.classification.InterfaceAudience;
import org.apache.pulsar.common.classification.InterfaceStability;

import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import org.apache.pulsar.common.classification.InterfaceAudience;
import org.apache.pulsar.common.classification.InterfaceStability;

/**
* {@link TableViewBuilder} is used to configure and create instances of {@link TableView}.
Expand Down Expand Up @@ -79,15 +78,15 @@ public interface TableViewBuilder<T> {
CompletableFuture<TableView<T>> createAsync();

/**
* Set the topic name of the {@link TableView}
* Set the topic name of the {@link TableView}.
*
* @param topic the name of the topic to create the {@link TableView}
* @return the {@link TableViewBuilder} builder instance
*/
TableViewBuilder<T> topic(String topic);

/**
* Set the interval of updating partitions <i>(default: 1 minute)</i>
* Set the interval of updating partitions <i>(default: 1 minute)</i>.
* @param interval the interval of updating partitions
* @param unit the time unit of the interval
* @return the {@link TableViewBuilder} builder instance
Expand Down

0 comments on commit c1a31fd

Please sign in to comment.