Interface MemcachedSession
-
- All Superinterfaces:
ClosedMemcachedSession
,Session
- All Known Implementing Classes:
ClosedMemcachedTCPSession
,MemcachedTCPSession
public interface MemcachedSession extends ClosedMemcachedSession
Abstract interface for memcached connection.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.google.code.yanf4j.core.Session
Session.SessionStatus
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
destroy()
boolean
isAuthFailed()
void
quit()
void
setAuthFailed(boolean authFailed)
void
setBufferAllocator(BufferAllocator allocator)
-
Methods inherited from interface net.rubyeye.xmemcached.networking.ClosedMemcachedSession
getInetSocketAddressWrapper, getOrder, getWeight, isAllowReconnect, setAllowReconnect
-
Methods inherited from interface com.google.code.yanf4j.core.Session
clearAttributes, close, flush, getAttribute, getDecoder, getEncoder, getHandler, getLastOperationTimeStamp, getLocalAddress, getReadBufferByteOrder, getRemoteSocketAddress, getScheduleWritenBytes, getSessionIdleTimeout, getSessionTimeout, isClosed, isExpired, isHandleReadWriteConcurrently, isIdle, isLoopbackConnection, isUseBlockingRead, isUseBlockingWrite, removeAttribute, setAttribute, setAttributeIfAbsent, setDecoder, setEncoder, setHandleReadWriteConcurrently, setReadBufferByteOrder, setSessionIdleTimeout, setSessionTimeout, setUseBlockingRead, setUseBlockingWrite, start, write
-
-
-
-
Method Detail
-
setBufferAllocator
void setBufferAllocator(BufferAllocator allocator)
-
destroy
void destroy()
-
quit
void quit()
-
isAuthFailed
boolean isAuthFailed()
-
setAuthFailed
void setAuthFailed(boolean authFailed)
-
-