Hi Asternie
The hbase idl is really well commented [1] with getRowTs defined as follows
-Jake
/**
* Get all the data for the specified table and row at the specified
* timestamp. Returns an empty list if the row does not exist.
*
* @return TRowResult containing the row and map of columns to TCells
*/
list<TRowResult> getRowTs(
/** name of the table */
1:Text tableName,
/** row key */
2:Text row,
/** timestamp */
3:i64 timestamp,
/** Get attributes */
4:map<Text, Text> attributes
) throws (1:IOError io)
[1]:
http://svn.apache.org/repos/asf/hbase/trunk/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift
On Wed, Apr 16, 2014 at 10:24 AM, Asternie Rasenburg <[email protected]>wrote:
> Where can I find detailed descriptions for the functions,
> with arguments and what it does?
>
> I'm searching now for the meaning of getRowTs.
> I can only find the types of arguments.
> I'm missing detailed function description.
>