Skip navigation links
A C D E F G H I M O P Q R S T W 

A

addContactPoint(String) - Method in class io.vertx.cassandra.CassandraClientOptions
Add a address, where a cluster node is located.
all(Handler<AsyncResult<List<Row>>>) - Method in interface io.vertx.cassandra.ResultSet
The method should not be used concurrently with others like ResultSet.several(int, Handler) or ResultSet.one(Handler).
all() - Method in interface io.vertx.cassandra.ResultSet
Like ResultSet.all(Handler) but returns a Future of the asynchronous result.

C

CassandraClient - Interface in io.vertx.cassandra
Eclipse Vert.x Cassandra client.
CassandraClientOptions - Class in io.vertx.cassandra
Eclipse Vert.x Cassandra client options.
CassandraClientOptions() - Constructor for class io.vertx.cassandra.CassandraClientOptions
Default constructor.
CassandraClientOptions(CassandraClientOptions) - Constructor for class io.vertx.cassandra.CassandraClientOptions
Copy constructor.
CassandraClientOptions(Cluster.Builder) - Constructor for class io.vertx.cassandra.CassandraClientOptions
Constructor using an existing Cluster.Builder instance.
CassandraClientOptions(JsonObject) - Constructor for class io.vertx.cassandra.CassandraClientOptions
Constructor to create options from JSON.
CassandraClientOptionsConverter - Class in io.vertx.cassandra
Converter and Codec for CassandraClientOptions.
CassandraClientOptionsConverter() - Constructor for class io.vertx.cassandra.CassandraClientOptionsConverter
 
CassandraRowStream - Interface in io.vertx.cassandra
A ReadStream for Row consumption.
close() - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.close(Handler) but returns a Future of the asynchronous result.
close(Handler<AsyncResult<Void>>) - Method in interface io.vertx.cassandra.CassandraClient
Closes this client.
create(CassandraClient) - Static method in interface io.vertx.cassandra.MappingManager
Create a MappingManager from the given CassandraClient.
createNonShared(Vertx) - Static method in interface io.vertx.cassandra.CassandraClient
createNonShared(Vertx, CassandraClientOptions) - Static method in interface io.vertx.cassandra.CassandraClient
Create a Cassandra client which maintains its own driver session.
createShared(Vertx) - Static method in interface io.vertx.cassandra.CassandraClient
createShared(Vertx, String) - Static method in interface io.vertx.cassandra.CassandraClient
createShared(Vertx, CassandraClientOptions) - Static method in interface io.vertx.cassandra.CassandraClient
createShared(Vertx, String, CassandraClientOptions) - Static method in interface io.vertx.cassandra.CassandraClient
Create a Cassandra client that shares its driver session with any other client having the same name.

D

dataStaxClusterBuilder() - Method in class io.vertx.cassandra.CassandraClientOptions
 
decode(JsonObject) - Method in class io.vertx.cassandra.CassandraClientOptionsConverter
 
DEFAULT_HOST - Static variable in class io.vertx.cassandra.CassandraClientOptions
Default host for connecting with Cassandra service.
DEFAULT_PORT - Static variable in class io.vertx.cassandra.CassandraClientOptions
Default port for connecting with Cassandra service.
DEFAULT_SHARED_CLIENT_NAME - Static variable in interface io.vertx.cassandra.CassandraClient
The default shared client name.
delete(List<Object>, Handler<AsyncResult<Void>>) - Method in interface io.vertx.cassandra.Mapper
Asynchronous delete method based on the column values of the primary key.
delete(List<Object>) - Method in interface io.vertx.cassandra.Mapper
Like Mapper.delete(List, Handler) but returns a Future of the asynchronous result.

E

encode(CassandraClientOptions) - Method in class io.vertx.cassandra.CassandraClientOptionsConverter
 
endHandler(Handler<Void>) - Method in interface io.vertx.cassandra.CassandraRowStream
 
exceptionHandler(Handler<Throwable>) - Method in interface io.vertx.cassandra.CassandraRowStream
 
execute(String, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.cassandra.CassandraClient
Execute the query and provide a handler for consuming results.
execute(String) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.execute(String, Handler) but returns a Future of the asynchronous result.
execute(String, Collector<Row, ?, R>, Handler<AsyncResult<R>>) - Method in interface io.vertx.cassandra.CassandraClient
Execute a query and produce a result by applying a collector to result set rows.
execute(String, Collector<Row, ?, R>) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.execute(String, Collector, Handler) but returns a Future of the asynchronous result.
execute(Statement, Handler<AsyncResult<ResultSet>>) - Method in interface io.vertx.cassandra.CassandraClient
Execute the statement and provide a handler for consuming results.
execute(Statement) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.execute(Statement, Handler) but returns a Future of the asynchronous result.
execute(Statement, Collector<Row, ?, R>, Handler<AsyncResult<R>>) - Method in interface io.vertx.cassandra.CassandraClient
Execute a statement and produce a result by applying a collector to result set rows.
execute(Statement, Collector<Row, ?, R>) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.execute(Statement, Collector, Handler) but returns a Future of the asynchronous result.
executeWithFullFetch(String, Handler<AsyncResult<List<Row>>>) - Method in interface io.vertx.cassandra.CassandraClient
Execute the query and provide a handler for consuming results.
executeWithFullFetch(String) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.executeWithFullFetch(String, Handler) but returns a Future of the asynchronous result.
executeWithFullFetch(Statement, Handler<AsyncResult<List<Row>>>) - Method in interface io.vertx.cassandra.CassandraClient
Execute the query and provide a handler for consuming results.
executeWithFullFetch(Statement) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.executeWithFullFetch(Statement, Handler) but returns a Future of the asynchronous result.

F

fetch(long) - Method in interface io.vertx.cassandra.CassandraRowStream
 
fetchMoreResults(Handler<AsyncResult<Void>>) - Method in interface io.vertx.cassandra.ResultSet
 
fetchMoreResults() - Method in interface io.vertx.cassandra.ResultSet
Like ResultSet.fetchMoreResults(Handler) but returns a Future of the asynchronous result.
fromJson(Iterable<Map.Entry<String, Object>>, CassandraClientOptions) - Static method in class io.vertx.cassandra.CassandraClientOptionsConverter
 

G

get(List<Object>, Handler<AsyncResult<T>>) - Method in interface io.vertx.cassandra.Mapper
Asynchronous get method based on the column values of the primary key.
get(List<Object>) - Method in interface io.vertx.cassandra.Mapper
Like Mapper.get(List, Handler) but returns a Future of the asynchronous result.
getAvailableWithoutFetching() - Method in interface io.vertx.cassandra.ResultSet
 
getColumnDefinitions() - Method in interface io.vertx.cassandra.ResultSet
 
getContactPoints() - Method in class io.vertx.cassandra.CassandraClientOptions
 
getKeyspace() - Method in class io.vertx.cassandra.CassandraClientOptions
 
getTargetClass() - Method in class io.vertx.cassandra.CassandraClientOptionsConverter
 

H

handler(Handler<Row>) - Method in interface io.vertx.cassandra.CassandraRowStream
 

I

INSTANCE - Static variable in class io.vertx.cassandra.CassandraClientOptionsConverter
 
io.vertx.cassandra - package io.vertx.cassandra
 
isConnected() - Method in interface io.vertx.cassandra.CassandraClient
 
isExhausted() - Method in interface io.vertx.cassandra.ResultSet
 
isFullyFetched() - Method in interface io.vertx.cassandra.ResultSet
 

M

Mapper<T> - Interface in io.vertx.cassandra
It is like Mapper, but adapted for Vert.x.
mapper(Class<T>) - Method in interface io.vertx.cassandra.MappingManager
Create a Mapper that allows conversion of domain classes to and from query results.
MappingManager - Interface in io.vertx.cassandra
It is like MappingManager, but adapted for Vert.x.

O

one(Handler<AsyncResult<Row>>) - Method in interface io.vertx.cassandra.ResultSet
The method should not be used concurrently with others like ResultSet.several(int, Handler) or ResultSet.all(Handler).
one() - Method in interface io.vertx.cassandra.ResultSet
Like ResultSet.one(Handler) but returns a Future of the asynchronous result.

P

pause() - Method in interface io.vertx.cassandra.CassandraRowStream
 
prepare(String, Handler<AsyncResult<PreparedStatement>>) - Method in interface io.vertx.cassandra.CassandraClient
Prepares the provided query string.
prepare(String) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.prepare(String, Handler) but returns a Future of the asynchronous result.

Q

queryStream(String, Handler<AsyncResult<CassandraRowStream>>) - Method in interface io.vertx.cassandra.CassandraClient
Executes the given SQL SELECT statement which returns the results of the query as a read stream.
queryStream(String) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.queryStream(String, Handler) but returns a Future of the asynchronous result.
queryStream(Statement, Handler<AsyncResult<CassandraRowStream>>) - Method in interface io.vertx.cassandra.CassandraClient
Executes the given SQL statement which returns the results of the query as a read stream.
queryStream(Statement) - Method in interface io.vertx.cassandra.CassandraClient
Like CassandraClient.queryStream(Statement, Handler) but returns a Future of the asynchronous result.

R

ResultSet - Interface in io.vertx.cassandra
It is like ResultSet, but adapted for Vert.x.
resume() - Method in interface io.vertx.cassandra.CassandraRowStream
 

S

save(T, Handler<AsyncResult<Void>>) - Method in interface io.vertx.cassandra.Mapper
Asynchronous save method.
save(T) - Method in interface io.vertx.cassandra.Mapper
Like Mapper.save(Object, Handler) but returns a Future of the asynchronous result.
setContactPoints(List<String>) - Method in class io.vertx.cassandra.CassandraClientOptions
Set a list of hosts, where some of cluster nodes is located.
setKeyspace(String) - Method in class io.vertx.cassandra.CassandraClientOptions
Set the keyspace to use when creating the Cassandra session.
setPort(int) - Method in class io.vertx.cassandra.CassandraClientOptions
Set which port should be used for all the hosts to connect to a cassandra service.
several(int, Handler<AsyncResult<List<Row>>>) - Method in interface io.vertx.cassandra.ResultSet
Fetch a specific amount of rows and notify via a handler.
several(int) - Method in interface io.vertx.cassandra.ResultSet
Like ResultSet.several(int, Handler) but returns a Future of the asynchronous result.

T

toJson() - Method in class io.vertx.cassandra.CassandraClientOptions
 
toJson(CassandraClientOptions, JsonObject) - Static method in class io.vertx.cassandra.CassandraClientOptionsConverter
 
toJson(CassandraClientOptions, Map<String, Object>) - Static method in class io.vertx.cassandra.CassandraClientOptionsConverter
 

W

wasApplied() - Method in interface io.vertx.cassandra.ResultSet
 
A C D E F G H I M O P Q R S T W 
Skip navigation links

Copyright © 2019 Eclipse. All rights reserved.