Uses of Interface
net.spy.memcached.ConnectionFactory
-
Packages that use ConnectionFactory Package Description net.spy.memcached Memcached client and transformation utilsnet.spy.memcached.protocol Base classes for protocol abstractions.net.spy.memcached.protocol.ascii Low-level operations for the memcached ascii protocolnet.spy.memcached.protocol.binary Low-level operations for the memcached binary protocol -
-
Uses of ConnectionFactory in net.spy.memcached
Classes in net.spy.memcached that implement ConnectionFactory Modifier and Type Class Description class
BinaryConnectionFactory
Default connection factory for binary wire protocol connections.class
DefaultConnectionFactory
Default implementation of ConnectionFactory.class
KetamaConnectionFactory
ConnectionFactory instance that sets up a ketama compatible connection.Fields in net.spy.memcached declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
MemcachedConnection. connectionFactory
The connection factory to createMemcachedNode
s from.protected ConnectionFactory
MemcachedClient. connFactory
Methods in net.spy.memcached that return ConnectionFactory Modifier and Type Method Description ConnectionFactory
ConnectionFactoryBuilder. build()
Get the ConnectionFactory set up with the provided parameters.Constructors in net.spy.memcached with parameters of type ConnectionFactory Constructor Description ConnectionFactoryBuilder(ConnectionFactory cf)
MemcachedClient(ConnectionFactory cf, java.util.List<java.net.InetSocketAddress> addrs)
Get a memcache client over the specified memcached locations.MemcachedConnection(int bufSize, ConnectionFactory f, java.util.List<java.net.InetSocketAddress> a, java.util.Collection<ConnectionObserver> obs, FailureMode fm, OperationFactory opfactory)
Construct aMemcachedConnection
.TapConnectionProvider(ConnectionFactory cf, java.util.List<java.net.InetSocketAddress> addrs)
Get a tap client operating on the specified memcached locations. -
Uses of ConnectionFactory in net.spy.memcached.protocol
Fields in net.spy.memcached.protocol declared as ConnectionFactory Modifier and Type Field Description private ConnectionFactory
TCPMemcachedNodeImpl. connectionFactory
Constructors in net.spy.memcached.protocol with parameters of type ConnectionFactory Constructor Description TCPMemcachedNodeImpl(java.net.SocketAddress sa, java.nio.channels.SocketChannel c, int bufSize, java.util.concurrent.BlockingQueue<Operation> rq, java.util.concurrent.BlockingQueue<Operation> wq, java.util.concurrent.BlockingQueue<Operation> iq, long opQueueMaxBlockTime, boolean waitForAuth, long dt, long authWaitTime, ConnectionFactory fact)
-
Uses of ConnectionFactory in net.spy.memcached.protocol.ascii
Constructors in net.spy.memcached.protocol.ascii with parameters of type ConnectionFactory Constructor Description AsciiMemcachedNodeImpl(java.net.SocketAddress sa, java.nio.channels.SocketChannel c, int bufSize, java.util.concurrent.BlockingQueue<Operation> rq, java.util.concurrent.BlockingQueue<Operation> wq, java.util.concurrent.BlockingQueue<Operation> iq, java.lang.Long opQueueMaxBlockTimeNs, long dt, long at, ConnectionFactory fa)
-
Uses of ConnectionFactory in net.spy.memcached.protocol.binary
Constructors in net.spy.memcached.protocol.binary with parameters of type ConnectionFactory Constructor Description BinaryMemcachedNodeImpl(java.net.SocketAddress sa, java.nio.channels.SocketChannel c, int bufSize, java.util.concurrent.BlockingQueue<Operation> rq, java.util.concurrent.BlockingQueue<Operation> wq, java.util.concurrent.BlockingQueue<Operation> iq, java.lang.Long opQueueMaxBlockTimeNs, boolean waitForAuth, long dt, long at, ConnectionFactory fa)
-