Constructor using current time. These byte arrays will NOT be copied. Note: If you want to set your own timestamp, use #PutRequest(byte[], byte[], byte[], byte[], byte[], long) instead. This constructor will let the RegionServer assign the timestamp to this write at the
(final byte[] table,
final byte[] key,
final byte[] family,
final byte[] qualifier,
final byte[] value)
| 108 | * @param value The value to store. |
| 109 | */ |
| 110 | public PutRequest(final byte[] table, |
| 111 | final byte[] key, |
| 112 | final byte[] family, |
| 113 | final byte[] qualifier, |
| 114 | final byte[] value) { |
| 115 | this(table, key, family, qualifier, value, |
| 116 | KeyValue.TIMESTAMP_NOW, RowLock.NO_LOCK); |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * Constructor for multiple columns using current time. |
nothing calls this directly
no test coverage detected