C# Class OHM.Hbase.HbaseConnection

Inheritance: OHMConnection
Exibir arquivo Open project: charliem/OCM Class Usage Examples

Public Methods

Method Description
HbaseConnection ( ) : System
batchRowMutation ( byte table, OHMRowMutation rowMutation ) : void
closeConnection ( ) : void
connect ( String address, int port ) : bool
deleteRow ( byte table, byte row ) : void
getCell ( byte table, byte row, byte column ) : OHMCell
getRow ( byte table, byte row ) : OHMRow
openScanner ( byte table, byte key ) : int
openScanner ( byte table, byte key, List columnNames ) : int
openScannerWithStop ( byte table, byte startKey, byte stopKey ) : int
openScannerWithStop ( byte table, byte startKey, byte stopKey, List columnNames ) : int
scannerClose ( int scannerID ) : void
scannerGet ( int scannerID ) : OHMRow

Private Methods

Method Description
convertRowResult ( TRowResult result ) : OHMRow

Method Details

HbaseConnection() public method

public HbaseConnection ( ) : System
return System

batchRowMutation() public method

public batchRowMutation ( byte table, OHMRowMutation rowMutation ) : void
table byte
rowMutation OHM.OHMRowMutation
return void

closeConnection() public method

public closeConnection ( ) : void
return void

connect() public method

public connect ( String address, int port ) : bool
address String
port int
return bool

deleteRow() public method

public deleteRow ( byte table, byte row ) : void
table byte
row byte
return void

getCell() public method

public getCell ( byte table, byte row, byte column ) : OHMCell
table byte
row byte
column byte
return OHM.OHMCell

getRow() public method

public getRow ( byte table, byte row ) : OHMRow
table byte
row byte
return OHM.OHMRow

openScanner() public method

public openScanner ( byte table, byte key ) : int
table byte
key byte
return int

openScanner() public method

public openScanner ( byte table, byte key, List columnNames ) : int
table byte
key byte
columnNames List
return int

openScannerWithStop() public method

public openScannerWithStop ( byte table, byte startKey, byte stopKey ) : int
table byte
startKey byte
stopKey byte
return int

openScannerWithStop() public method

public openScannerWithStop ( byte table, byte startKey, byte stopKey, List columnNames ) : int
table byte
startKey byte
stopKey byte
columnNames List
return int

scannerClose() public method

public scannerClose ( int scannerID ) : void
scannerID int
return void

scannerGet() public method

public scannerGet ( int scannerID ) : OHMRow
scannerID int
return OHM.OHMRow