Interface ReadContext (2.16.1)

public interface ReadContext extends AutoCloseable

Implements

AutoCloseable

Methods

analyzeQuery(Statement arg0, ReadContext.QueryAnalyzeMode arg1)

public abstract ResultSet analyzeQuery(Statement arg0, ReadContext.QueryAnalyzeMode arg1)
Parameters
NameDescription
arg0Statement
arg1QueryAnalyzeMode
Returns
TypeDescription
ResultSet

close()

public abstract void close()

executeQuery(Statement arg0, Options.QueryOption[] arg1)

public abstract ResultSet executeQuery(Statement arg0, Options.QueryOption[] arg1)
Parameters
NameDescription
arg0Statement
arg1QueryOption[]
Returns
TypeDescription
ResultSet

executeQueryAsync(Statement arg0, Options.QueryOption[] arg1)

public abstract AsyncResultSet executeQueryAsync(Statement arg0, Options.QueryOption[] arg1)
Parameters
NameDescription
arg0Statement
arg1QueryOption[]
Returns
TypeDescription
AsyncResultSet

read(String arg0, KeySet arg1, Iterable<String> arg2, Options.ReadOption[] arg3)

public abstract ResultSet read(String arg0, KeySet arg1, Iterable<String> arg2, Options.ReadOption[] arg3)
Parameters
NameDescription
arg0String
arg1KeySet
arg2Iterable<String>
arg3ReadOption[]
Returns
TypeDescription
ResultSet

readAsync(String arg0, KeySet arg1, Iterable<String> arg2, Options.ReadOption[] arg3)

public abstract AsyncResultSet readAsync(String arg0, KeySet arg1, Iterable<String> arg2, Options.ReadOption[] arg3)
Parameters
NameDescription
arg0String
arg1KeySet
arg2Iterable<String>
arg3ReadOption[]
Returns
TypeDescription
AsyncResultSet

readRow(String arg0, Key arg1, Iterable<String> arg2)

public abstract Struct readRow(String arg0, Key arg1, Iterable<String> arg2)
Parameters
NameDescription
arg0String
arg1Key
arg2Iterable<String>
Returns
TypeDescription
Struct

readRowAsync(String arg0, Key arg1, Iterable<String> arg2)

public abstract ApiFuture<Struct> readRowAsync(String arg0, Key arg1, Iterable<String> arg2)
Parameters
NameDescription
arg0String
arg1Key
arg2Iterable<String>
Returns
TypeDescription
ApiFuture<Struct>

readRowUsingIndex(String arg0, String arg1, Key arg2, Iterable<String> arg3)

public abstract Struct readRowUsingIndex(String arg0, String arg1, Key arg2, Iterable<String> arg3)
Parameters
NameDescription
arg0String
arg1String
arg2Key
arg3Iterable<String>
Returns
TypeDescription
Struct

readRowUsingIndexAsync(String arg0, String arg1, Key arg2, Iterable<String> arg3)

public abstract ApiFuture<Struct> readRowUsingIndexAsync(String arg0, String arg1, Key arg2, Iterable<String> arg3)
Parameters
NameDescription
arg0String
arg1String
arg2Key
arg3Iterable<String>
Returns
TypeDescription
ApiFuture<Struct>

readUsingIndex(String arg0, String arg1, KeySet arg2, Iterable<String> arg3, Options.ReadOption[] arg4)

public abstract ResultSet readUsingIndex(String arg0, String arg1, KeySet arg2, Iterable<String> arg3, Options.ReadOption[] arg4)
Parameters
NameDescription
arg0String
arg1String
arg2KeySet
arg3Iterable<String>
arg4ReadOption[]
Returns
TypeDescription
ResultSet

readUsingIndexAsync(String arg0, String arg1, KeySet arg2, Iterable<String> arg3, Options.ReadOption[] arg4)

public abstract AsyncResultSet readUsingIndexAsync(String arg0, String arg1, KeySet arg2, Iterable<String> arg3, Options.ReadOption[] arg4)
Parameters
NameDescription
arg0String
arg1String
arg2KeySet
arg3Iterable<String>
arg4ReadOption[]
Returns
TypeDescription
AsyncResultSet