* @param table the table to scan
* @return a new {@link RowScanner} for the specified table
* @see HBaseClient#newScanner(byte[])
*/
public RowScanner newScanner(final byte[] table) {
return new InstrumentedRowScanner(client.newScanner(table), metrics);
}