com.google.cloud.bigtable.hbase.adapters
Interface OperationAdapter<T extends Row,U>
-
- Type Parameters:
T
- The HBase operation typeU
- The Google Cloud Java Bigtable Model type.
- All Known Implementing Classes:
- AppendAdapter, DeleteAdapter, HBaseMutationAdapter, IncrementAdapter, MutationAdapter, PutAdapter, RowMutationsAdapter, UnsupportedMutationAdapter
public interface OperationAdapter<T extends Row,U>
An interface for adapters that will convert an HBase Operation into Google Cloud Java Bigtable Models type.- Version:
- $Id: $Id
- Author:
- sduskis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
adapt(T operation, U u)
Adapt a single HBase Operation to a single Bigtable generated message.
-