class ObjectCache extends AnyRef

Represents a standard cache for objects originating from a virtual machine.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ObjectCache
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ObjectCache(internalCache: Map[CacheId, CacheValue] = ...)

    internalCache

    Contains the collection of objects by their unique ids

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clear(): Unit

    Removes all objects in the cache.

  6. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  11. 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

  12. 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

  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. 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

  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  19. 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

  20. 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

  21. 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

  22. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped