Package com.datasift.dropwizard.hbase.scanner

Examples of com.datasift.dropwizard.hbase.scanner.BoundedRowScanner


     * @return a new {@link RowScanner} for the specified table.
     *
     * @see HBaseClient#scan(byte[])
     */
    public RowScanner scan(final byte[] table) {
        return new BoundedRowScanner(client.scan(table), semaphore);
    }
View Full Code Here


     * @return a new {@link RowScanner} for the specified table.
     *
     * @see HBaseClient#scan(String)
     */
    public RowScanner scan(final String table) {
        return new BoundedRowScanner(client.scan(table), semaphore);
    }
View Full Code Here

     * @return a new {@link RowScanner} for the specified table.
     *
     * @see HBaseClient#scan(byte[])
     */
    public RowScanner scan(final byte[] table) {
        return new BoundedRowScanner(client.scan(table), semaphore);
    }
View Full Code Here

     * @return a new {@link RowScanner} for the specified table.
     *
     * @see HBaseClient#scan(String)
     */
    public RowScanner scan(final String table) {
        return new BoundedRowScanner(client.scan(table), semaphore);
    }
View Full Code Here

     * @param table the table to scan
     * @return a new {@link RowScanner} for the specified table
     * @see HBaseClient#scan(byte[])
     */
    public RowScanner scan(final byte[] table) {
        return new BoundedRowScanner(client.scan(table), semaphore);
    }
View Full Code Here

     * @param table the table to scan
     * @return a new {@link RowScanner} for the specified table
     * @see HBaseClient#scan(String)
     */
    public RowScanner scan(final String table) {
        return new BoundedRowScanner(client.scan(table), semaphore);
    }
View Full Code Here

     * @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 BoundedRowScanner(client.newScanner(table), semaphore);
    }
View Full Code Here

     * @param table the table to scan
     * @return a new {@link RowScanner} for the specified table
     * @see HBaseClient#newScanner(String)
     */
    public RowScanner newScanner(final String table) {
        return new BoundedRowScanner(client.newScanner(table), semaphore);
    }
View Full Code Here

TOP

Related Classes of com.datasift.dropwizard.hbase.scanner.BoundedRowScanner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.