congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
BigtableTableAdminClient.modifyColumnFamilyAsync
Code IndexAdd Tabnine to your IDE (free)

How to use
modifyColumnFamilyAsync
method
in
com.google.cloud.bigtable.grpc.BigtableTableAdminClient

Best Java code snippets using com.google.cloud.bigtable.grpc.BigtableTableAdminClient.modifyColumnFamilyAsync (Showing top 3 results out of 315)

origin: com.google.cloud.bigtable/bigtable-hbase-2.x

/**
 * Creates, modifies or deletes a new column family within a specified table.
 *
 * @param request a {@link ModifyColumnFamiliesRequest} object.
 * @return a {@link CompletableFuture} that returns {@link Table} object that contains the updated
 *         table structure.
 */
public CompletableFuture<Table> modifyColumnFamilyAsync(ModifyColumnFamiliesRequest request) {
 return toCompletableFuture(adminClient.modifyColumnFamilyAsync(request));
}
origin: GoogleCloudPlatform/cloud-bigtable-client

/**
 * Creates, modifies or deletes a new column family within a specified table.
 *
 * @param request a {@link ModifyColumnFamiliesRequest} object.
 * @return a {@link CompletableFuture} that returns {@link Table} object that contains the updated
 *         table structure.
 */
public CompletableFuture<Table> modifyColumnFamilyAsync(ModifyColumnFamiliesRequest request) {
 return toCompletableFuture(adminClient.modifyColumnFamilyAsync(request));
}
origin: GoogleCloudPlatform/cloud-bigtable-client

/** {@inheritDoc} */
@Override
public ListenableFuture<Table> modifyFamiliesAsync(ModifyColumnFamiliesRequest request) {
 com.google.bigtable.admin.v2.ModifyColumnFamiliesRequest modifyColumnRequestProto =
   request.toProto(instanceName.getProjectId(), instanceName.getInstanceId());
 return Futures.transform(adminClient.modifyColumnFamilyAsync(modifyColumnRequestProto),
   new Function<com.google.bigtable.admin.v2.Table, Table>() {
  @Override
  public Table apply(com.google.bigtable.admin.v2.Table tableProto) {
   return Table.fromProto(tableProto);
  }
 }, MoreExecutors.directExecutor());
}
com.google.cloud.bigtable.grpcBigtableTableAdminClientmodifyColumnFamilyAsync

Javadoc

Creates, modifies or deletes a new column family within a specified table.

Popular methods of BigtableTableAdminClient

  • getTable
  • createTable
  • createTableAsync
  • deleteTable
  • createTableFromSnapshotAsync
  • deleteSnapshotAsync
  • deleteTableAsync
  • dropRowRange
  • dropRowRangeAsync
  • getTableAsync
  • listSnapshotsAsync
  • listTables
  • listSnapshotsAsync,
  • listTables,
  • listTablesAsync,
  • modifyColumnFamily,
  • snapshotTableAsync,
  • getSnapshotAsync

Popular in Java

  • Updating database using SQL prepared statement
  • setContentView (Activity)
  • getSharedPreferences (Context)
  • getContentResolver (Context)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • JLabel (javax.swing)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now