Constructor. These byte arrays will NOT be copied. @param table The non-empty name of the table to use. @param key The row key to get in that table.
(final byte[] table, final byte[] key)
| 84 | * @param key The row key to get in that table. |
| 85 | */ |
| 86 | public GetRequest(final byte[] table, final byte[] key) { |
| 87 | super(table, key); |
| 88 | this.bufferable = false; //don't buffer get request |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Constructor. |