Trait

cogx.platform.checkpoint

ObjectRestorer

Related Doc: package checkpoint

Permalink

trait ObjectRestorer extends AnyRef

Created by Dick Carter on 1/16/2015.

Defines the functionality needed of an object restorer, independent of the specific technology (hdf5, java serialization, etc.)

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ObjectRestorer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def close(): Unit

    Permalink

    Close object store, preventing further reads.

  2. abstract def readFloat(name: String): Float

    Permalink

    Read a Float from the object store with the key name.

  3. abstract def readFloatArray(name: String): Array[Float]

    Permalink

    Read a Float array from the object store with the key name.

  4. abstract def readInt(name: String): Int

    Permalink

    Read an Int from the object store with the key name.

  5. abstract def readIntArray(name: String): Array[Int]

    Permalink

    Read an Int array from the object store with the key name.

  6. abstract def readLong(name: String): Long

    Permalink

    Read a Long from the object store with the key name.

  7. abstract def readLongArray(name: String): Array[Long]

    Permalink

    Read a Long array from the object store with the key name.

  8. abstract def readOptionalInt(name: String): Option[Int]

    Permalink

    Attempt to read an optional Int from the object store with key 'name', returning None if the given name isn't present in the store.

  9. abstract def readOptionalString(name: String): Option[String]

    Permalink

    Attempt to read an optional String from the object store with key 'name', returning None if the given name isn't present in the store.

  10. abstract def readRestorable(name: String, factory: RestoreFactory): AnyRef

    Permalink

    Read a non-primitive "Restoreable" object from the object store with the key name.

  11. abstract def readRestorableArray(name: String, factory: RestoreFactory): Array[AnyRef]

    Permalink

    Read an array of non-primitive "Restorable" objects from the object store with the key name.

  12. abstract def readString(name: String): String

    Permalink

    Read a String from the object store with the key name.

  13. abstract def readStringArray(name: String): Array[String]

    Permalink

    Read an Array[String] from the object store with the key name.

Concrete 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 clone(): AnyRef

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

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

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped