Uses of Interface
net.spy.memcached.ConnectionObserver

Packages that use ConnectionObserver
net.spy.memcached Memcached client and transformation utils 
net.spy.memcached.spring   
 

Uses of ConnectionObserver in net.spy.memcached
 

Classes in net.spy.memcached that implement ConnectionObserver
 class MemcachedClient
          Client to a memcached server.
 class TapConnectionProvider
           
 

Methods in net.spy.memcached that return types with arguments of type ConnectionObserver
 Collection<ConnectionObserver> ConnectionFactory.getInitialObservers()
          Observers that should be established at the time of connection instantiation.
 Collection<ConnectionObserver> DefaultConnectionFactory.getInitialObservers()
           
 

Methods in net.spy.memcached with parameters of type ConnectionObserver
 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
 ConnectionFactoryBuilder ConnectionFactoryBuilder.setInitialObservers(Collection<ConnectionObserver> obs)
          Set the initial connection observers (will observe initial connection).
 

Constructor parameters in net.spy.memcached with type arguments of type ConnectionObserver
MemcachedConnection(int bufSize, ConnectionFactory f, List<InetSocketAddress> a, Collection<ConnectionObserver> obs, FailureMode fm, OperationFactory opfactory)
          Construct a memcached connection.
 

Uses of ConnectionObserver in net.spy.memcached.spring
 

Method parameters in net.spy.memcached.spring with type arguments of type ConnectionObserver
 void MemcachedClientFactoryBean.setInitialObservers(Collection<ConnectionObserver> obs)