Puts the given value into the data table.
(final byte[] key,
final byte[] qualifier,
final byte[] value,
long timestamp)
| 2205 | |
| 2206 | /** Puts the given value into the data table. */ |
| 2207 | final Deferred<Object> put(final byte[] key, |
| 2208 | final byte[] qualifier, |
| 2209 | final byte[] value, |
| 2210 | long timestamp) { |
| 2211 | return client.put(RequestBuilder.buildPutRequest(config, table, key, FAMILY, qualifier, value, timestamp)); |
| 2212 | } |
| 2213 | |
| 2214 | /** Deletes the given cells from the data table. */ |
| 2215 | final Deferred<Object> delete(final byte[] key, final byte[][] qualifiers) { |