Uses of Interface
net.rubyeye.xmemcached.CASOperation
-
Packages that use CASOperation Package Description net.rubyeye.xmemcached XMemcached's main classes and interfaces,use these classes/interfaces to interact with memcached servers. -
-
Uses of CASOperation in net.rubyeye.xmemcached
Methods in net.rubyeye.xmemcached with parameters of type CASOperation Modifier and Type Method Description <T> booleanMemcachedClient. cas(java.lang.String key, int exp, CASOperation<T> operation)<T> booleanMemcachedClient. cas(java.lang.String key, int exp, CASOperation<T> operation, Transcoder<T> transcoder)Cas is a check and set operation which means "store this data but only if no one else has updated since I last fetched it."<T> booleanMemcachedClient. cas(java.lang.String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation)<T> booleanMemcachedClient. cas(java.lang.String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation, Transcoder<T> transcoder)cas is a check and set operation which means "store this data but only if no one else has updated since I last fetched it."<T> booleanMemcachedClient. cas(java.lang.String key, CASOperation<T> operation)<T> booleanMemcachedClient. cas(java.lang.String key, GetsResponse<T> getsResponse, CASOperation<T> operation)<T> booleanXMemcachedClient. cas(java.lang.String key, int exp, CASOperation<T> operation)<T> booleanXMemcachedClient. cas(java.lang.String key, int exp, CASOperation<T> operation, Transcoder<T> transcoder)<T> booleanXMemcachedClient. cas(java.lang.String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation)<T> booleanXMemcachedClient. cas(java.lang.String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation, Transcoder<T> transcoder)<T> booleanXMemcachedClient. cas(java.lang.String key, CASOperation<T> operation)<T> booleanXMemcachedClient. cas(java.lang.String key, GetsResponse<T> getsReponse, CASOperation<T> operation)private <T> booleanXMemcachedClient. cas0(java.lang.String key, int exp, GetsResponse<T> getsResponse, CASOperation<T> operation, Transcoder<T> transcoder, byte[] keyBytes, boolean noreply)<T> voidMemcachedClient. casWithNoReply(java.lang.String key, int exp, CASOperation<T> operation)<T> voidMemcachedClient. casWithNoReply(java.lang.String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation)cas noreply<T> voidMemcachedClient. casWithNoReply(java.lang.String key, CASOperation<T> operation)<T> voidMemcachedClient. casWithNoReply(java.lang.String key, GetsResponse<T> getsResponse, CASOperation<T> operation)<T> voidXMemcachedClient. casWithNoReply(java.lang.String key, int exp, CASOperation<T> operation)<T> voidXMemcachedClient. casWithNoReply(java.lang.String key, int exp, GetsResponse<T> getsReponse, CASOperation<T> operation)<T> voidXMemcachedClient. casWithNoReply(java.lang.String key, CASOperation<T> operation)<T> voidXMemcachedClient. casWithNoReply(java.lang.String key, GetsResponse<T> getsResponse, CASOperation<T> operation)
-