Skip to content

Instantly share code, notes, and snippets.

@zznate
Created February 11, 2011 17:09
Show Gist options
  • Save zznate/822680 to your computer and use it in GitHub Desktop.
Save zznate/822680 to your computer and use it in GitHub Desktop.
public interface HColumnFamily<K, N> {
HColumnFamily<K, N> addKey(K key);
HColumnFamily<K, N> addKeys(Iterable<K> keys);
HColumnFamily<K, N> addColumn(HColumn<N, ?> column);
HColumnFamily<K, N> addColumns(List<HColumn<N, ?>> columns);
QueryResult<?> executeQuery();
MutationResult executeMutation();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment