com.rethinkdb.RethinkDB Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rethinkdb-driver Show documentation
Show all versions of rethinkdb-driver Show documentation
Official Java driver for RethinkDB
package com.rethinkdb;
import com.rethinkdb.gen.model.TopLevel;
import com.rethinkdb.net.Connection;
public class RethinkDB extends TopLevel {
/**
* The Singleton to use to begin interacting with RethinkDB Driver
*/
public static final RethinkDB r = new RethinkDB();
public Connection.Builder connection() {
return Connection.build();
}
}