Class/Object

org.scaladebugger.api.virtualmachines

ObjectCache

Related Docs: object ObjectCache | package virtualmachines

Permalink

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] = ...)

    Permalink

    internalCache

    Contains the collection of objects by their unique ids

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clear(): Unit

    Permalink

    Removes all objects in the cache.

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def has(cacheValue: CacheValue): Boolean

    Permalink

    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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. def load(cacheId: CacheId): Option[CacheValue]

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. def remove(cacheValue: CacheValue): Option[CacheValue]

    Permalink

    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]

    Permalink

    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]

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped