Uses of Interface
net.spy.memcached.ConnectionObserver

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

Uses of ConnectionObserver in net.spy.memcached
 

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 MemcachedClient.removeObserver(ConnectionObserver obs)
          Remove a connection observer.
 boolean MemcachedClientIF.removeObserver(ConnectionObserver obs)
           
 boolean MemcachedConnection.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.