Package | Description |
---|---|
org.red5.server.api.cache | |
org.red5.server.cache |
Modifier and Type | Method and Description |
---|---|
ICacheable |
ICacheStore.get(String name)
Return a cached object with the given name.
|
Modifier and Type | Method and Description |
---|---|
Iterator<SoftReference<? extends ICacheable>> |
ICacheStore.getObjects()
Return iterator over the already loaded objects in the storage.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ICacheStore.remove(ICacheable obj)
Delete the passed cached object.
|
Modifier and Type | Class and Description |
---|---|
class |
CacheableImpl
Provides an implementation of a cacheable object.
|
Modifier and Type | Method and Description |
---|---|
ICacheable |
CacheImpl.get(String name)
Return a cached object with the given name.
|
ICacheable |
EhCacheImpl.get(String name)
Return a cached object with the given name.
|
ICacheable |
NoCacheImpl.get(String name)
Return a cached object with the given name.
|
Modifier and Type | Method and Description |
---|---|
Iterator<SoftReference<? extends ICacheable>> |
CacheImpl.getObjects()
Return iterator over the already loaded objects in the storage.
|
Iterator<SoftReference<? extends ICacheable>> |
EhCacheImpl.getObjects()
Return iterator over the already loaded objects in the storage.
|
Iterator<SoftReference<? extends ICacheable>> |
NoCacheImpl.getObjects()
Return iterator over the already loaded objects in the storage.
|
Modifier and Type | Method and Description |
---|---|
protected void |
CacheImpl.put(String name,
ICacheable obj) |
boolean |
CacheImpl.remove(ICacheable obj)
Delete the passed cached object.
|
boolean |
EhCacheImpl.remove(ICacheable obj)
Delete the passed cached object.
|
boolean |
NoCacheImpl.remove(ICacheable obj)
Delete the passed cached object.
|
Copyright © 2006-2012 The Red5 Project