Packages

object Item extends Serializable

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

Type Members

  1. sealed trait ItemFsmError extends AnyRef

    Common violations of FSM-nature of Item

  2. final case class OrderedRecords(nel: NonEmptyList[Record]) 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. def apply(unordered: NonEmptyList[Record]): Item

    Constructor, ensuring that final Item always contains sorted Records

    Constructor, ensuring that final Item always contains sorted Records

    unordered

    non-empty list (probably) received without particular order

    returns

    Item with same Records, but ordered by timestamp

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. final def canBeProcessedBy(requester: Application)(item: Item): Boolean

    Check if list of applications extracted from SKIPPED record are blocking current app

  7. final def checkItemId(item: List[Record]): Either[String, Unit]

    Check that Item has a consistent state, e.g.

    Check that Item has a consistent state, e.g. it has a single id

  8. final def checkStateConsistency(item: List[Record]): Either[NonEmptyList[String], Unit]

    Primary FSM-checking state, validating that no records refer to unexpected previous records, e.g.

    Primary FSM-checking state, validating that no records refer to unexpected previous records, e.g. NEW is always first and FAILED always refers to some PROCESSING

  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. implicit final val itemShow: Show[Item]
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def processedBy(application: Application, record: Record): Boolean
  20. final def processedBy(application: Application, item: Item): Boolean

    Check that Item was already processed by Application Does not do any validations on Item, e.g.

    Check that Item was already processed by Application Does not do any validations on Item, e.g. inconsistent state ids won't make result different. Assumes that item with Application(_, _, None, _) covers Application(_, _, Some(a), _) and Application(_, _, Some(b), _), making safe double-processing (e.g. loading to two storage targets) by same rdb-loader

  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 ItemFsmError

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 Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped