Uses of Interface
org.mariadb.jdbc.client.Client
-
Packages that use Client Package Description org.mariadb.jdbc org.mariadb.jdbc.client.impl org.mariadb.jdbc.export org.mariadb.jdbc.message.client org.mariadb.jdbc.message.server -
-
Uses of Client in org.mariadb.jdbc
Fields in org.mariadb.jdbc declared as Client Modifier and Type Field Description private Client
Connection. client
Methods in org.mariadb.jdbc that return Client Modifier and Type Method Description Client
Connection. getClient()
Associate connection clientConstructors in org.mariadb.jdbc with parameters of type Client Constructor Description Connection(Configuration conf, ClosableLock lock, Client client)
Connection construction. -
Uses of Client in org.mariadb.jdbc.client.impl
Classes in org.mariadb.jdbc.client.impl that implement Client Modifier and Type Class Description class
MultiPrimaryClient
Handling connection failing automatic reconnection transparently when possible for multi-master Topology.class
MultiPrimaryReplicaClient
Handling connection failing automatic reconnection transparently when possible for replication Topology.class
ReplayClient
Replay client wrapperclass
StandardClient
Connection clientFields in org.mariadb.jdbc.client.impl declared as Client Modifier and Type Field Description protected Client
MultiPrimaryClient. currentClient
current clientprivate Client
MultiPrimaryReplicaClient. primaryClient
private Client
MultiPrimaryReplicaClient. replicaClient
Methods in org.mariadb.jdbc.client.impl that return Client Modifier and Type Method Description protected Client
MultiPrimaryClient. connectHost(boolean readOnly, boolean failFast)
Trying connecting server.protected Client
MultiPrimaryClient. reConnect()
Connection loopprotected Client
MultiPrimaryReplicaClient. reConnect()
Reconnect connection, trying to continue transparently if possible.Methods in org.mariadb.jdbc.client.impl with parameters of type Client Modifier and Type Method Description protected void
MultiPrimaryClient. executeTransactionReplay(Client oldCli)
Execute transaction replayprotected void
MultiPrimaryClient. replayIfPossible(Client oldClient, boolean canRedo)
Execute transaction replay if in transaction and configured for it, throw an exception if notvoid
MultiPrimaryClient. syncNewState(Client oldCli)
Synchronized previous and new client states. -
Uses of Client in org.mariadb.jdbc.export
Methods in org.mariadb.jdbc.export with parameters of type Client Modifier and Type Method Description void
Prepare. close(Client con)
Close Prepared commandvoid
Prepare. decrementUse(Client con, BasePreparedStatement preparedStatement)
Decrement use of prepare. -
Uses of Client in org.mariadb.jdbc.message.client
Methods in org.mariadb.jdbc.message.client with parameters of type Client Modifier and Type Method Description default void
RedoableWithPrepareClientMessage. rePrepare(Client client)
Force re-prepare command -
Uses of Client in org.mariadb.jdbc.message.server
Methods in org.mariadb.jdbc.message.server with parameters of type Client Modifier and Type Method Description void
CachedPrepareResultPacket. close(Client con)
Indicate that a prepare statement must be closed (if not in LRU cache)void
PrepareResultPacket. close(Client con)
Close prepare packetvoid
CachedPrepareResultPacket. decrementUse(Client con, BasePreparedStatement preparedStatement)
void
PrepareResultPacket. decrementUse(Client con, BasePreparedStatement preparedStatement)
Decrement use of prepare packet, so closing it if last usedvoid
CachedPrepareResultPacket. unCache(Client con)
Indicate that Prepare command is not on LRU cache anymore.
-