Package com.datasift.dropwizard.hbase.scanner

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


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


     * @return a new {@link RowScanner} for the specified table.
     *
     * @see org.hbase.async.HBaseClient#newScanner(String)
     */
    public RowScanner scan(final String table) {
        return new RowScannerProxy(client.newScanner(table));
    }
View Full Code Here

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

     * @return a new {@link RowScanner} for the specified table.
     *
     * @see org.hbase.async.HBaseClient#newScanner(String)
     */
    public RowScanner scan(final String table) {
        return new RowScannerProxy(client.newScanner(table));
    }
View Full Code Here

    public Deferred<RowLock> lockRow(final RowLockRequest request) {
        return client.lockRow(request);
    }

    public RowScanner scan(final byte[] table) {
        return new RowScannerProxy(client.newScanner(table));
    }
View Full Code Here

    public RowScanner scan(final byte[] table) {
        return new RowScannerProxy(client.newScanner(table));
    }

    public RowScanner scan(final String table) {
        return new RowScannerProxy(client.newScanner(table));
    }
View Full Code Here

    public RowScanner newScanner(final byte[] table) {
        return new RowScannerProxy(client.newScanner(table));
    }

    public RowScanner newScanner(final String table) {
        return new RowScannerProxy(client.newScanner(table));
    }
View Full Code Here

    public Deferred<RowLock> lockRow(final RowLockRequest request) {
        return client.lockRow(request);
    }

    public RowScanner newScanner(final byte[] table) {
        return new RowScannerProxy(client.newScanner(table));
    }
View Full Code Here

TOP

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

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.