org.scaladebugger.api.virtualmachines

ObjectCache

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
Learn more about member selection
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: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clear(): Unit

    Removes all objects in the cache.

  8. def clone(): AnyRef

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

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

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

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

    Definition Classes
    AnyRef → Any
  13. 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

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

  15. def hashCode(): Int

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

    Definition Classes
    Any
  17. 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

  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. final def notify(): Unit

    Definition Classes
    AnyRef
  20. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  21. 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

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

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

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  25. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped