All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.astyanax.query.RowQuery Maven / Gradle / Ivy

There is a newer version: 3.10.2
Show newest version
/*******************************************************************************
 * Copyright 2011 Netflix
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 ******************************************************************************/
package com.netflix.astyanax.query;

import java.nio.ByteBuffer;
import java.util.Collection;

import com.netflix.astyanax.Execution;
import com.netflix.astyanax.RowCopier;
import com.netflix.astyanax.connectionpool.exceptions.ConnectionException;
import com.netflix.astyanax.model.ByteBufferRange;
import com.netflix.astyanax.model.ColumnFamily;
import com.netflix.astyanax.model.ColumnList;
import com.netflix.astyanax.model.ColumnSlice;

/**
 * Interface to narrow down the path and column slices within a query after the
 * keys were seleted using the ColumnFamilyQuery.
 * 
 * @author elandau
 * 
 * @param 
 * @param 
 */
public interface RowQuery extends Execution> {
    /**
     * Specify the path to a single column (either Standard or Super). Notice
     * that the sub column type and serializer will be used now.
     * 
     * @param 
     * @param path
     */
    ColumnQuery getColumn(C column);

    /**
     * Specify a non-contiguous set of columns to retrieve.
     * 
     * @param columns
     */
    RowQuery withColumnSlice(Collection columns);

    /**
     * Specify a non-contiguous set of columns to retrieve.
     * 
     * @param columns
     */
    RowQuery withColumnSlice(C... columns);

    /**
     * Use this when your application caches the column slice.
     * 
     * @param slice
     */
    RowQuery withColumnSlice(ColumnSlice columns);

    /**
     * Specify a range of columns to return. Use this for simple ranges for
     * non-composite column names. For Composite column names use
     * withColumnRange(ByteBufferRange range) and the
     * AnnotatedCompositeSerializer.buildRange()
     * 
     * @param startColumn
     *            First column in the range
     * @param endColumn
     *            Last column in the range
     * @param reversed
     *            True if the order should be reversed. Note that for reversed,
     *            startColumn should be greater than endColumn.
     * @param count
     *            Maximum number of columns to return (similar to SQL LIMIT)
     */
    RowQuery withColumnRange(C startColumn, C endColumn, boolean reversed, int count);

    /**
     * Specify a range and provide pre-constructed start and end columns. Use
     * this with Composite columns
     * 
     * @param startColumn
     * @param endColumn
     * @param reversed
     * @param count
     */
    RowQuery withColumnRange(ByteBuffer startColumn, ByteBuffer endColumn, boolean reversed, int count);

    /**
     * Specify a range of composite columns. Use this in conjunction with the
     * AnnotatedCompositeSerializer.buildRange().
     * 
     * @param range
     */
    RowQuery withColumnRange(ByteBufferRange range);

    @Deprecated
    /**
     * Use autoPaginate instead
     */
    RowQuery setIsPaginating();

    /**
     * When used in conjunction with a column range this will call subsequent
     * calls to execute() to get the next block of columns.
     */
    RowQuery autoPaginate(boolean enabled);

    /**
     * Copy the results of the query to another column family
     * 
     * @param columnFamily
     * @param otherRowKey
     */
    RowCopier copyTo(ColumnFamily columnFamily, K rowKey);

    /**
     * Returns the number of columns in the response without returning any data
     * @throws ConnectionException
     */
    ColumnCountQuery getCount();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy