class ObjectCache extends AnyRef
Represents a standard cache for objects originating from a virtual machine.
- Alphabetic
- By Inheritance
- ObjectCache
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
ObjectCache(internalCache: Map[CacheId, CacheValue] = ...)
- internalCache
Contains the collection of objects by their unique ids
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clear(): Unit
Removes all objects in the cache.
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
has(cacheValue: CacheValue): Boolean
Returns whether or not the cache has the specified object.
Returns whether or not the cache has the specified object.
- cacheValue
The object whose id to use
- returns
True if the cache has the object, otherwise false
-
def
has(cacheId: CacheId): Boolean
Returns whether or not the cache has an object with the specified id.
Returns whether or not the cache has an object with the specified id.
- cacheId
The id of the object
- returns
True if the cache has the object, otherwise false
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
load(cacheId: CacheId): Option[CacheValue]
Loads an object from the cache.
Loads an object from the cache.
- cacheId
The id of the object to load
- returns
Some object if the object was cached and is still valid, otherwise None
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
def
remove(cacheValue: CacheValue): Option[CacheValue]
Removes an object from the cache.
Removes an object from the cache.
- cacheValue
The object to remove
- returns
Some object if the object existed and was removed, otherwise None
-
def
remove(cacheId: CacheId): Option[CacheValue]
Removes an object from the cache.
Removes an object from the cache.
- cacheId
The id of the object to remove
- returns
Some object if the object existed and was removed, otherwise None
-
def
save(cacheValue: CacheValue): Option[CacheId]
Saves an object into the cache.
Saves an object into the cache.
- cacheValue
The object to save
- returns
Some object id if the object was saved, otherwise None
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )