Package org.red5.cache.impl
Class CacheableImpl
java.lang.Object
org.red5.cache.impl.CacheableImpl
- All Implemented Interfaces:
Serializable,ICacheable
Provides an implementation of a cacheable object.
- Author:
- The Red5 Project, Paul Gregoire ([email protected])
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCacheableImpl(Object obj) CacheableImpl(org.apache.mina.core.buffer.IoBuffer buffer) -
Method Summary
Modifier and TypeMethodDescriptionvoidorg.apache.mina.core.buffer.IoBufferReturns a readonly byte buffer.byte[]getBytes()Returns the object contained within the cacheable reference.getName()Returns the name of the cached object.booleanisCached()Returnstrueif the object is cached,falseotherwise.voidsetCached(boolean cached) Sets a flag to represent the cached status of a cacheable object.voidSet the name of the cached object.
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
log
protected static org.slf4j.Logger log -
bytes
private byte[] bytes -
name
-
cached
private boolean cached
-
-
Constructor Details
-
CacheableImpl
-
CacheableImpl
public CacheableImpl(org.apache.mina.core.buffer.IoBuffer buffer)
-
-
Method Details
-
addRequest
public void addRequest() -
getBytes
public byte[] getBytes()Returns the object contained within the cacheable reference.- Specified by:
getBytesin interfaceICacheable- Returns:
- Cached representation of object
-
getByteBuffer
public org.apache.mina.core.buffer.IoBuffer getByteBuffer()Returns a readonly byte buffer.- Specified by:
getByteBufferin interfaceICacheable- Returns:
- Read-only IoBuffer with cached data
-
getName
Returns the name of the cached object.- Specified by:
getNamein interfaceICacheable- Returns:
- Object name
-
isCached
public boolean isCached()Returnstrueif the object is cached,falseotherwise.- Specified by:
isCachedin interfaceICacheable- Returns:
trueif object is cached,falseotherwise
-
setCached
public void setCached(boolean cached) Sets a flag to represent the cached status of a cacheable object.- Specified by:
setCachedin interfaceICacheable- Parameters:
cached-trueif object is cached,falseotherwise
-
setName
Set the name of the cached object.- Specified by:
setNamein interfaceICacheable- Parameters:
name- New object name
-