com.google.cloud.bigtable.grpc.BigtableTableName

Here are the examples of the java api class com.google.cloud.bigtable.grpc.BigtableTableName taken from open source projects.

1. BigtableServiceImpl#openForWriting()

Project: incubator-beam
File: BigtableServiceImpl.java
@Override
public BigtableWriterImpl openForWriting(String tableId) throws IOException {
    BigtableSession session = new BigtableSession(options);
    BigtableTableName tableName = options.getClusterName().toTableName(tableId);
    return new BigtableWriterImpl(session, tableName);
}