Packages

c

spacro

InMemoryHITDataService

class InMemoryHITDataService extends HITDataService

Simple in-memory implementation of HITDataService for use in testing and sample tasks.

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

Instance Constructors

  1. new InMemoryHITDataService()

Type Members

  1. case class HITStore(hit: HIT[String], approved: List[Assignment[String]], rejected: List[Assignment[String]]) extends Product with Serializable

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 clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def getAllHITInfo[Prompt, Response](hitTypeId: String)(implicit arg0: Decoder[Prompt], arg1: Decoder[Response]): Try[List[HITInfo[Prompt, Response]]]

    Get all saved HIT data for a given HIT Type.

    Get all saved HIT data for a given HIT Type.

    Definition Classes
    InMemoryHITDataServiceHITDataService
  9. def getAssignmentsForHIT[Response](hitTypeId: String, hitId: String)(implicit arg0: Decoder[Response]): Try[List[Assignment[Response]]]

    Get all assignments for a given HIT.

    Get all assignments for a given HIT.

    Definition Classes
    InMemoryHITDataServiceHITDataService
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. def getHIT[Prompt](hitTypeId: String, hitId: String)(implicit arg0: Decoder[Prompt]): Try[HIT[Prompt]]

    Get a stored HIT by its HIT Type ID and HIT ID, which together uniquely identify it.

    Get a stored HIT by its HIT Type ID and HIT ID, which together uniquely identify it. (HIT ID may already be unique; I'm not sure.)

    Definition Classes
    InMemoryHITDataServiceHITDataService
  12. def getHITInfo[Prompt, Response](hitTypeId: String, hitId: String)(implicit arg0: Decoder[Prompt], arg1: Decoder[Response]): Try[HITInfo[Prompt, Response]]

    Get a saved HIT and all data relevant to that HIT.

    Get a saved HIT and all data relevant to that HIT.

    Definition Classes
    InMemoryHITDataServiceHITDataService
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. def saveApprovedAssignment[Response](assignment: Assignment[Response])(implicit arg0: Encoder[Response]): Try[Unit]

    Save the data of an assignment that has been approved on MTurk.

    Save the data of an assignment that has been approved on MTurk. Should happen directly after the assignment is approved.

    Definition Classes
    InMemoryHITDataServiceHITDataService
  19. def saveHIT[Prompt](hit: HIT[Prompt])(implicit arg0: Encoder[Prompt]): Try[Unit]

    Save a HIT that has been uploaded to MTurk.

    Save a HIT that has been uploaded to MTurk. This should happen directly after successful HIT creation.

    Definition Classes
    InMemoryHITDataServiceHITDataService
  20. def saveRejectedAssignment[Response](assignment: Assignment[Response])(implicit arg0: Encoder[Response]): Try[Unit]

    Save the data of an assignment that has been rejected on MTurk.

    Save the data of an assignment that has been rejected on MTurk. Should happen directly after the assignment is rejected.

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from HITDataService

Inherited from AnyRef

Inherited from Any

Ungrouped