Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix javadoc failure #1966

Merged
merged 1 commit into from
Oct 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,18 @@ public interface IBigtableDataClient {
* Mutate a row atomically.
*
* @param rowMutation a {@link RowMutation} model object.
* @throws ExecutionException
* @throws InterruptedException
* @throws ExecutionException if any.
* @throws InterruptedException if any.
*/
void mutateRow(RowMutation rowMutation) throws ExecutionException, InterruptedException;

/**
* Mutate a row atomically.
*
* @param rowMutation a {@link RowMutation} model object.
* @return ApiFuture</Void> returns api future.
* @throws InterruptedException
* @return a {@link ApiFuture} of type {@link Void} will be set when request is
* successful otherwise exception will be thrown.
* @throws InterruptedException if any.
*/
ApiFuture<Void> mutateRowAsync(RowMutation rowMutation) throws InterruptedException;

Expand All @@ -51,8 +52,8 @@ public interface IBigtableDataClient {
*
* @param readModifyWriteRow a {@link ReadModifyWriteRow} model object.
* @return Row a modified row.
* @throws ExecutionException
* @throws InterruptedException
* @throws ExecutionException if any.
* @throws InterruptedException if any.
*/
Row readModifyWriteRow(ReadModifyWriteRow readModifyWriteRow)
throws ExecutionException, InterruptedException;
Expand All @@ -61,8 +62,9 @@ Row readModifyWriteRow(ReadModifyWriteRow readModifyWriteRow)
* Perform an atomic read-modify-write operation on a row.
*
* @param readModifyWriteRow a {@link ReadModifyWriteRow} model object.
* @return ApiFuture<Row> returns future.
* @throws InterruptedException
* @return a {@link ApiFuture} of type {@link Row} will be set when request is
* successful otherwise exception will be thrown.
* @throws InterruptedException if any.
*/
ApiFuture<Row> readModifyWriteRowAsync(ReadModifyWriteRow readModifyWriteRow) throws InterruptedException;

Expand All @@ -75,7 +77,8 @@ Row readModifyWriteRow(ReadModifyWriteRow readModifyWriteRow)
* Mutate a row atomically dependent on a precondition.
*
* @param conditionalRowMutation a {@link ConditionalRowMutation} model object.
* @return ApiFuture<Boolean> returns api future.
* @return a {@link ApiFuture} of type {@link Boolean} will be set when request is
* successful otherwise exception will be thrown.
*/
ApiFuture<Boolean> checkAndMutateRowAsync(ConditionalRowMutation conditionalRowMutation);

Expand All @@ -84,8 +87,8 @@ Row readModifyWriteRow(ReadModifyWriteRow readModifyWriteRow)
*
* @param conditionalRowMutation a {@link ConditionalRowMutation} model object.
* @return Boolean returns true if predicate returns any result.
* @throws ExecutionException
* @throws InterruptedException
* @throws ExecutionException if any.
* @throws InterruptedException if any.
*/
Boolean checkAndMutateRow(ConditionalRowMutation conditionalRowMutation)
throws ExecutionException, InterruptedException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public interface IBulkMutation {
* mechanism.
*
* @param rowMutation The {@link com.google.cloud.bigtable.data.v2.models.RowMutation} to add
* @return a {@link com.google.common.util.concurrent.SettableFuture} will be set when request is
* successful otherwise exception will be thrown.
* @return a {@link ApiFuture} of type {@link Void} will be set when request is
* successful otherwise exception will be thrown.
*/
ApiFuture<Void> add(RowMutation rowMutation);
}