public static class THBaseService.Client extends org.apache.thrift.TServiceClient implements THBaseService.Iface
| Modifier and Type | Class and Description | 
|---|---|
| static class  | THBaseService.Client.Factory | 
| Constructor and Description | 
|---|
| THBaseService.Client(org.apache.thrift.protocol.TProtocol prot) | 
| THBaseService.Client(org.apache.thrift.protocol.TProtocol iprot,
                    org.apache.thrift.protocol.TProtocol oprot) | 
| Modifier and Type | Method and Description | 
|---|---|
| TResult | append(ByteBuffer table,
      TAppend append) | 
| boolean | checkAndDelete(ByteBuffer table,
              ByteBuffer row,
              ByteBuffer family,
              ByteBuffer qualifier,
              ByteBuffer value,
              TDelete deleteSingle)Atomically checks if a row/family/qualifier value matches the expected
 value. | 
| boolean | checkAndPut(ByteBuffer table,
           ByteBuffer row,
           ByteBuffer family,
           ByteBuffer qualifier,
           ByteBuffer value,
           TPut put)Atomically checks if a row/family/qualifier value matches the expected
 value. | 
| void | closeScanner(int scannerId)Closes the scanner. | 
| List<TDelete> | deleteMultiple(ByteBuffer table,
              List<TDelete> deletes)Bulk commit a List of TDeletes to the table. | 
| void | deleteSingle(ByteBuffer table,
            TDelete deleteSingle)Deletes as specified by the TDelete. | 
| boolean | exists(ByteBuffer table,
      TGet get)Test for the existence of columns in the table, as specified in the TGet. | 
| TResult | get(ByteBuffer table,
   TGet get)Method for getting data from a row. | 
| List<TResult> | getMultiple(ByteBuffer table,
           List<TGet> gets)Method for getting multiple rows. | 
| List<TResult> | getScannerResults(ByteBuffer table,
                 TScan scan,
                 int numRows)Get results for the provided TScan object. | 
| List<TResult> | getScannerRows(int scannerId,
              int numRows)Grabs multiple rows from a Scanner. | 
| TResult | increment(ByteBuffer table,
         TIncrement increment) | 
| void | mutateRow(ByteBuffer table,
         TRowMutations rowMutations)mutateRow performs multiple mutations atomically on a single row. | 
| int | openScanner(ByteBuffer table,
           TScan scan)Get a Scanner for the provided TScan object. | 
| void | put(ByteBuffer table,
   TPut put)Commit a TPut to a table. | 
| void | putMultiple(ByteBuffer table,
           List<TPut> puts)Commit a List of Puts to the table. | 
| TResult | recv_append() | 
| boolean | recv_checkAndDelete() | 
| boolean | recv_checkAndPut() | 
| void | recv_closeScanner() | 
| List<TDelete> | recv_deleteMultiple() | 
| void | recv_deleteSingle() | 
| boolean | recv_exists() | 
| TResult | recv_get() | 
| List<TResult> | recv_getMultiple() | 
| List<TResult> | recv_getScannerResults() | 
| List<TResult> | recv_getScannerRows() | 
| TResult | recv_increment() | 
| void | recv_mutateRow() | 
| int | recv_openScanner() | 
| void | recv_put() | 
| void | recv_putMultiple() | 
| void | send_append(ByteBuffer table,
           TAppend append) | 
| void | send_checkAndDelete(ByteBuffer table,
                   ByteBuffer row,
                   ByteBuffer family,
                   ByteBuffer qualifier,
                   ByteBuffer value,
                   TDelete deleteSingle) | 
| void | send_checkAndPut(ByteBuffer table,
                ByteBuffer row,
                ByteBuffer family,
                ByteBuffer qualifier,
                ByteBuffer value,
                TPut put) | 
| void | send_closeScanner(int scannerId) | 
| void | send_deleteMultiple(ByteBuffer table,
                   List<TDelete> deletes) | 
| void | send_deleteSingle(ByteBuffer table,
                 TDelete deleteSingle) | 
| void | send_exists(ByteBuffer table,
           TGet get) | 
| void | send_get(ByteBuffer table,
        TGet get) | 
| void | send_getMultiple(ByteBuffer table,
                List<TGet> gets) | 
| void | send_getScannerResults(ByteBuffer table,
                      TScan scan,
                      int numRows) | 
| void | send_getScannerRows(int scannerId,
                   int numRows) | 
| void | send_increment(ByteBuffer table,
              TIncrement increment) | 
| void | send_mutateRow(ByteBuffer table,
              TRowMutations rowMutations) | 
| void | send_openScanner(ByteBuffer table,
                TScan scan) | 
| void | send_put(ByteBuffer table,
        TPut put) | 
| void | send_putMultiple(ByteBuffer table,
                List<TPut> puts) | 
public THBaseService.Client(org.apache.thrift.protocol.TProtocol prot)
public THBaseService.Client(org.apache.thrift.protocol.TProtocol iprot,
                    org.apache.thrift.protocol.TProtocol oprot)
public boolean exists(ByteBuffer table, TGet get) throws TIOError, org.apache.thrift.TException
THBaseService.Ifaceexists in interface THBaseService.Ifacetable - the table to check onget - the TGet to check forTIOErrororg.apache.thrift.TExceptionpublic void send_exists(ByteBuffer table, TGet get) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic boolean recv_exists()
                    throws TIOError,
                           org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic TResult get(ByteBuffer table, TGet get) throws TIOError, org.apache.thrift.TException
THBaseService.Ifaceget in interface THBaseService.Ifacetable - the table to get fromget - the TGet to fetchTIOErrororg.apache.thrift.TExceptionpublic void send_get(ByteBuffer table, TGet get) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic TResult recv_get() throws TIOError, org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic List<TResult> getMultiple(ByteBuffer table, List<TGet> gets) throws TIOError, org.apache.thrift.TException
THBaseService.IfacegetMultiple in interface THBaseService.Ifacetable - the table to get fromgets - a list of TGets to fetch, the Result list
 will have the Results at corresponding positions
 or null if there was an errorTIOErrororg.apache.thrift.TExceptionpublic void send_getMultiple(ByteBuffer table, List<TGet> gets) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic List<TResult> recv_getMultiple() throws TIOError, org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic void put(ByteBuffer table, TPut put) throws TIOError, org.apache.thrift.TException
THBaseService.Ifaceput in interface THBaseService.Ifacetable - the table to put data input - the TPut to putTIOErrororg.apache.thrift.TExceptionpublic void send_put(ByteBuffer table, TPut put) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic void recv_put()
              throws TIOError,
                     org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic boolean checkAndPut(ByteBuffer table, ByteBuffer row, ByteBuffer family, ByteBuffer qualifier, ByteBuffer value, TPut put) throws TIOError, org.apache.thrift.TException
THBaseService.IfacecheckAndPut in interface THBaseService.Ifacetable - to check in and put torow - row to checkfamily - column family to checkqualifier - column qualifier to checkvalue - the expected value, if not provided the
 check is for the non-existence of the
 column in questionput - the TPut to put if the check succeedsTIOErrororg.apache.thrift.TExceptionpublic void send_checkAndPut(ByteBuffer table, ByteBuffer row, ByteBuffer family, ByteBuffer qualifier, ByteBuffer value, TPut put) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic boolean recv_checkAndPut()
                         throws TIOError,
                                org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic void putMultiple(ByteBuffer table, List<TPut> puts) throws TIOError, org.apache.thrift.TException
THBaseService.IfaceputMultiple in interface THBaseService.Ifacetable - the table to put data inputs - a list of TPuts to commitTIOErrororg.apache.thrift.TExceptionpublic void send_putMultiple(ByteBuffer table, List<TPut> puts) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic void recv_putMultiple()
                      throws TIOError,
                             org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic void deleteSingle(ByteBuffer table, TDelete deleteSingle) throws TIOError, org.apache.thrift.TException
THBaseService.IfacedeleteSingle in interface THBaseService.Ifacetable - the table to delete fromdeleteSingle - the TDelete to deleteTIOErrororg.apache.thrift.TExceptionpublic void send_deleteSingle(ByteBuffer table, TDelete deleteSingle) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic void recv_deleteSingle()
                       throws TIOError,
                              org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic List<TDelete> deleteMultiple(ByteBuffer table, List<TDelete> deletes) throws TIOError, org.apache.thrift.TException
THBaseService.IfacedeleteMultiple in interface THBaseService.Ifacetable - the table to delete fromdeletes - list of TDeletes to deleteTIOErrororg.apache.thrift.TExceptionpublic void send_deleteMultiple(ByteBuffer table, List<TDelete> deletes) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic List<TDelete> recv_deleteMultiple() throws TIOError, org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic boolean checkAndDelete(ByteBuffer table, ByteBuffer row, ByteBuffer family, ByteBuffer qualifier, ByteBuffer value, TDelete deleteSingle) throws TIOError, org.apache.thrift.TException
THBaseService.IfacecheckAndDelete in interface THBaseService.Ifacetable - to check in and delete fromrow - row to checkfamily - column family to checkqualifier - column qualifier to checkvalue - the expected value, if not provided the
 check is for the non-existence of the
 column in questiondeleteSingle - the TDelete to execute if the check succeedsTIOErrororg.apache.thrift.TExceptionpublic void send_checkAndDelete(ByteBuffer table, ByteBuffer row, ByteBuffer family, ByteBuffer qualifier, ByteBuffer value, TDelete deleteSingle) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic boolean recv_checkAndDelete()
                            throws TIOError,
                                   org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic TResult increment(ByteBuffer table, TIncrement increment) throws TIOError, org.apache.thrift.TException
increment in interface THBaseService.IfaceTIOErrororg.apache.thrift.TExceptionpublic void send_increment(ByteBuffer table, TIncrement increment) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic TResult recv_increment() throws TIOError, org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic TResult append(ByteBuffer table, TAppend append) throws TIOError, org.apache.thrift.TException
append in interface THBaseService.IfaceTIOErrororg.apache.thrift.TExceptionpublic void send_append(ByteBuffer table, TAppend append) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic TResult recv_append() throws TIOError, org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic int openScanner(ByteBuffer table, TScan scan) throws TIOError, org.apache.thrift.TException
THBaseService.IfaceopenScanner in interface THBaseService.Ifacetable - the table to get the Scanner forscan - the scan object to get a Scanner forTIOErrororg.apache.thrift.TExceptionpublic void send_openScanner(ByteBuffer table, TScan scan) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic int recv_openScanner()
                     throws TIOError,
                            org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic List<TResult> getScannerRows(int scannerId, int numRows) throws TIOError, TIllegalArgument, org.apache.thrift.TException
THBaseService.IfacegetScannerRows in interface THBaseService.IfacescannerId - the Id of the Scanner to return rows from. This is an Id returned from the openScanner function.numRows - number of rows to returnTIOErrorTIllegalArgumentorg.apache.thrift.TExceptionpublic void send_getScannerRows(int scannerId,
                       int numRows)
                         throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic List<TResult> recv_getScannerRows() throws TIOError, TIllegalArgument, org.apache.thrift.TException
TIOErrorTIllegalArgumentorg.apache.thrift.TExceptionpublic void closeScanner(int scannerId)
                  throws TIOError,
                         TIllegalArgument,
                         org.apache.thrift.TException
THBaseService.IfacecloseScanner in interface THBaseService.IfacescannerId - the Id of the Scanner to close *TIOErrorTIllegalArgumentorg.apache.thrift.TExceptionpublic void send_closeScanner(int scannerId)
                       throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic void recv_closeScanner()
                       throws TIOError,
                              TIllegalArgument,
                              org.apache.thrift.TException
TIOErrorTIllegalArgumentorg.apache.thrift.TExceptionpublic void mutateRow(ByteBuffer table, TRowMutations rowMutations) throws TIOError, org.apache.thrift.TException
THBaseService.IfacemutateRow in interface THBaseService.Ifacetable - table to apply the mutationsrowMutations - mutations to applyTIOErrororg.apache.thrift.TExceptionpublic void send_mutateRow(ByteBuffer table, TRowMutations rowMutations) throws org.apache.thrift.TException
org.apache.thrift.TExceptionpublic void recv_mutateRow()
                    throws TIOError,
                           org.apache.thrift.TException
TIOErrororg.apache.thrift.TExceptionpublic List<TResult> getScannerResults(ByteBuffer table, TScan scan, int numRows) throws TIOError, org.apache.thrift.TException
THBaseService.IfacegetScannerResults in interface THBaseService.Ifacetable - the table to get the Scanner forscan - the scan object to get a Scanner fornumRows - number of rows to returnTIOErrororg.apache.thrift.TExceptionpublic void send_getScannerResults(ByteBuffer table, TScan scan, int numRows) throws org.apache.thrift.TException
org.apache.thrift.TExceptionCopyright © 2007-2016 The Apache Software Foundation. All Rights Reserved.