final case class TimeBasedUUID(value: UUID) extends Offset with Ordered[TimeBasedUUID] with Product with Serializable
Corresponds to an ordered unique identifier of the events. Note that the corresponding offset of each event is provided in the akka.persistence.query.EventEnvelope, which makes it possible to resume the stream at a later point from a given offset.
The offset
is exclusive, i.e. the event with the exact same sequence number will not be included
in the returned stream. This means that you can use the offset that is returned in EventEnvelope
as the offset
parameter in a subsequent query.
- Source
- Offset.scala
Linear Supertypes
Type Hierarchy
Ordering
- Alphabetic
- By Inheritance
Inherited
- TimeBasedUUID
- Serializable
- Serializable
- Product
- Equals
- Ordered
- Comparable
- Offset
- AnyRef
- Any
Implicitly
- by orderingToOrdered
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
<(that: TimeBasedUUID): Boolean
- Definition Classes
- Ordered
-
def
<=(that: TimeBasedUUID): Boolean
- Definition Classes
- Ordered
-
def
>(that: TimeBasedUUID): Boolean
- Definition Classes
- Ordered
-
def
>=(that: TimeBasedUUID): Boolean
- Definition Classes
- Ordered
-
def
compare(other: TimeBasedUUID): Int
- Definition Classes
- TimeBasedUUID → Ordered
-
def
compareTo(that: TimeBasedUUID): Int
- Definition Classes
- Ordered → Comparable
- val value: UUID
Shadowed Implicit Value Members
-
def
<(that: TimeBasedUUID): Boolean
- Implicit
- This member is added by an implicit conversion from TimeBasedUUID to Ordered[TimeBasedUUID] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(timeBasedUUID: Ordered[TimeBasedUUID]).<(that)
- Definition Classes
- Ordered
-
def
<=(that: TimeBasedUUID): Boolean
- Implicit
- This member is added by an implicit conversion from TimeBasedUUID to Ordered[TimeBasedUUID] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(timeBasedUUID: Ordered[TimeBasedUUID]).<=(that)
- Definition Classes
- Ordered
-
def
>(that: TimeBasedUUID): Boolean
- Implicit
- This member is added by an implicit conversion from TimeBasedUUID to Ordered[TimeBasedUUID] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(timeBasedUUID: Ordered[TimeBasedUUID]).>(that)
- Definition Classes
- Ordered
-
def
>=(that: TimeBasedUUID): Boolean
- Implicit
- This member is added by an implicit conversion from TimeBasedUUID to Ordered[TimeBasedUUID] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(timeBasedUUID: Ordered[TimeBasedUUID]).>=(that)
- Definition Classes
- Ordered
-
def
compare(that: TimeBasedUUID): Int
- Implicit
- This member is added by an implicit conversion from TimeBasedUUID to Ordered[TimeBasedUUID] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(timeBasedUUID: Ordered[TimeBasedUUID]).compare(that)
- Definition Classes
- Ordered
-
def
compareTo(that: TimeBasedUUID): Int
- Implicit
- This member is added by an implicit conversion from TimeBasedUUID to Ordered[TimeBasedUUID] performed by method orderingToOrdered in scala.math.Ordered.
- Shadowing
- This implicitly inherited member is shadowed by one or more members in this class.
To access this member you can use a type ascription:(timeBasedUUID: Ordered[TimeBasedUUID]).compareTo(that)
- Definition Classes
- Ordered → Comparable