MCPcopy Create free account
hub / github.com/OpenTSDB/asynchbase / DeleteRequest

Method DeleteRequest

src/DeleteRequest.java:81–83  ·  view source on GitHub ↗

Constructor to delete an entire row. These byte arrays will NOT be copied. @param table The table to edit. @param key The key of the row to edit in that table. @throws IllegalArgumentException if any argument is malformed.

(final byte[] table, final byte[] key)

Source from the content-addressed store, hash-verified

79 * @throws IllegalArgumentException if any argument is malformed.
80 */
81 public DeleteRequest(final byte[] table, final byte[] key) {
82 this(table, key, null, null, KeyValue.TIMESTAMP_NOW, RowLock.NO_LOCK);
83 }
84
85 /**
86 * Constructor to delete an entire row before a specific timestamp.

Callers

nothing calls this directly

Calls 8

checkFamilyMethod · 0.95
prettyMethod · 0.95
checkQualifierMethod · 0.95
idMethod · 0.80
keyMethod · 0.65
familyMethod · 0.65
qualifierMethod · 0.65
timestampMethod · 0.65

Tested by

no test coverage detected