Uses of Interface
net.spy.memcached.ConnectionObserver
-
Packages that use ConnectionObserver Package Description net.spy.memcached Memcached client and transformation utils -
-
Uses of ConnectionObserver in net.spy.memcached
Classes in net.spy.memcached that implement ConnectionObserver Modifier and Type Class Description class
MemcachedClient
Client to a memcached server.class
TapConnectionProvider
A TapConnectionProvider.Fields in net.spy.memcached with type parameters of type ConnectionObserver Modifier and Type Field Description private java.util.Collection<ConnectionObserver>
MemcachedConnection. connObservers
Holds all connection observers that get notified on connection status changes.protected java.util.Collection<ConnectionObserver>
ConnectionFactoryBuilder. initialObservers
Methods in net.spy.memcached that return types with arguments of type ConnectionObserver Modifier and Type Method Description java.util.Collection<ConnectionObserver>
ConnectionFactory. getInitialObservers()
Observers that should be established at the time of connection instantiation.java.util.Collection<ConnectionObserver>
DefaultConnectionFactory. getInitialObservers()
Methods in net.spy.memcached with parameters of type ConnectionObserver Modifier and Type Method Description boolean
MemcachedClient. addObserver(ConnectionObserver obs)
Add a connection observer.boolean
MemcachedClientIF. addObserver(ConnectionObserver obs)
boolean
MemcachedConnection. addObserver(ConnectionObserver obs)
Add a connection observer.boolean
TapConnectionProvider. addObserver(ConnectionObserver obs)
Add a connection observer.boolean
MemcachedClient. removeObserver(ConnectionObserver obs)
Remove a connection observer.boolean
MemcachedClientIF. removeObserver(ConnectionObserver obs)
boolean
MemcachedConnection. removeObserver(ConnectionObserver obs)
Remove a connection observer.boolean
TapConnectionProvider. removeObserver(ConnectionObserver obs)
Remove a connection observer.Method parameters in net.spy.memcached with type arguments of type ConnectionObserver Modifier and Type Method Description ConnectionFactoryBuilder
ConnectionFactoryBuilder. setInitialObservers(java.util.Collection<ConnectionObserver> obs)
Set the initial connection observers (will observe initial connection).Constructor parameters in net.spy.memcached with type arguments of type ConnectionObserver Constructor Description MemcachedConnection(int bufSize, ConnectionFactory f, java.util.List<java.net.InetSocketAddress> a, java.util.Collection<ConnectionObserver> obs, FailureMode fm, OperationFactory opfactory)
Construct aMemcachedConnection
.
-