Packages

final case class CounterParticipantInfo(counterParticipantUid: String, synchronizerId: String, intervalsBehind: Long, behindSince: Option[Duration], asOfSequencingTimestamp: Option[Timestamp]) extends GeneratedMessage with Updatable[CounterParticipantInfo] with Product with Serializable

intervalsBehind

MaxInt(2147483647) means that the counter-participant never sent a commitment

behindSince

how long time the corresponding intervals correlate to (Timestamp in the future means it has never sent a commitment) this is to help debugging, especially in the case where the reconciliation interval have been changed. for example, if we have a counter participant that is three intervals behind, and each interval is one minute. if the reconciliation interval is changed to 24 hours, then it might look like that counter-participant is three days behind (when it is actually only three minutes behind).

asOfSequencingTimestamp

the "as of" sequencing timestamp at which this information was obtained

Annotations
@SerialVersionUID()
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CounterParticipantInfo
  2. Updatable
  3. GeneratedMessage
  4. Serializable
  5. Product
  6. Equals
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CounterParticipantInfo(counterParticipantUid: String, synchronizerId: String, intervalsBehind: Long, behindSince: Option[Duration], asOfSequencingTimestamp: Option[Timestamp])

    intervalsBehind

    MaxInt(2147483647) means that the counter-participant never sent a commitment

    behindSince

    how long time the corresponding intervals correlate to (Timestamp in the future means it has never sent a commitment) this is to help debugging, especially in the case where the reconciliation interval have been changed. for example, if we have a counter participant that is three intervals behind, and each interval is one minute. if the reconciliation interval is changed to 24 hours, then it might look like that counter-participant is three days behind (when it is actually only three minutes behind).

    asOfSequencingTimestamp

    the "as of" sequencing timestamp at which this information was obtained

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. val asOfSequencingTimestamp: Option[Timestamp]
  6. val behindSince: Option[Duration]
  7. def clearAsOfSequencingTimestamp: CounterParticipantInfo
  8. def clearBehindSince: CounterParticipantInfo
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  10. def companion: CounterParticipantInfo.type
    Definition Classes
    CounterParticipantInfo → GeneratedMessage
  11. val counterParticipantUid: String
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def getAsOfSequencingTimestamp: Timestamp
  14. def getBehindSince: Duration
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. def getField(__field: FieldDescriptor): PValue
    Definition Classes
    CounterParticipantInfo → GeneratedMessage
  17. def getFieldByNumber(__fieldNumber: Int): Any
    Definition Classes
    CounterParticipantInfo → GeneratedMessage
  18. val intervalsBehind: Long
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. def serializedSize: Int
    Definition Classes
    CounterParticipantInfo → GeneratedMessage
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. val synchronizerId: String
  27. final def toByteArray: Array[Byte]
    Definition Classes
    GeneratedMessage
  28. final def toByteString: ByteString
    Definition Classes
    GeneratedMessage
  29. final def toPMessage: PMessage
    Definition Classes
    GeneratedMessage
  30. def toProtoString: String
    Definition Classes
    CounterParticipantInfo → GeneratedMessage
  31. def update(ms: (Lens[CounterParticipantInfo, CounterParticipantInfo]) => Mutation[CounterParticipantInfo]*): CounterParticipantInfo
    Definition Classes
    Updatable
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  35. def withAsOfSequencingTimestamp(__v: Timestamp): CounterParticipantInfo
  36. def withBehindSince(__v: Duration): CounterParticipantInfo
  37. def withCounterParticipantUid(__v: String): CounterParticipantInfo
  38. def withIntervalsBehind(__v: Long): CounterParticipantInfo
  39. def withSynchronizerId(__v: String): CounterParticipantInfo
  40. final def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage
  41. def writeTo(_output__: CodedOutputStream): Unit
    Definition Classes
    CounterParticipantInfo → GeneratedMessage
  42. final def writeTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage

Deprecated Value Members

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

    (Since version 9)

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped