Interface ReadContext (2.18.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
Name Description
arg0 Statement
arg1 QueryAnalyzeMode
Returns
Type Description
ResultSet

close()

public abstract void close()

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

public abstract ResultSet executeQuery(Statement arg0, Options.QueryOption[] arg1)
Parameters
Name Description
arg0 Statement
arg1 QueryOption[]
Returns
Type Description
ResultSet

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

public abstract AsyncResultSet executeQueryAsync(Statement arg0, Options.QueryOption[] arg1)
Parameters
Name Description
arg0 Statement
arg1 QueryOption[]
Returns
Type Description
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
Name Description
arg0 String
arg1 KeySet
arg2 Iterable<String>
arg3 ReadOption[]
Returns
Type Description
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
Name Description
arg0 String
arg1 KeySet
arg2 Iterable<String>
arg3 ReadOption[]
Returns
Type Description
AsyncResultSet

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

public abstract Struct readRow(String arg0, Key arg1, Iterable<String> arg2)
Parameters
Name Description
arg0 String
arg1 Key
arg2 Iterable<String>
Returns
Type Description
Struct

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

public abstract ApiFuture<Struct> readRowAsync(String arg0, Key arg1, Iterable<String> arg2)
Parameters
Name Description
arg0 String
arg1 Key
arg2 Iterable<String>
Returns
Type Description
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
Name Description
arg0 String
arg1 String
arg2 Key
arg3 Iterable<String>
Returns
Type Description
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
Name Description
arg0 String
arg1 String
arg2 Key
arg3 Iterable<String>
Returns
Type Description
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
Name Description
arg0 String
arg1 String
arg2 KeySet
arg3 Iterable<String>
arg4 ReadOption[]
Returns
Type Description
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
Name Description
arg0 String
arg1 String
arg2 KeySet
arg3 Iterable<String>
arg4 ReadOption[]
Returns
Type Description
AsyncResultSet