final case class ConflictingPendingOperationError(synchronizerId: SynchronizerId, key: String, name: NonEmptyString) extends Product with Serializable
Signals a failed attempt to insert a pending operation because it conflicts with an existing one.
A conflict occurs when an operation with the same unique key (synchronizerId, key, name)
already exists in the store but contains different data.
- synchronizerId
The unique identifier of the synchronizer that owns the operation.
- key
The key that uniquely identifies the pending operation within its scope.
- name
The name describing the type of pending operation.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ConflictingPendingOperationError
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ConflictingPendingOperationError(synchronizerId: SynchronizerId, key: String, name: NonEmptyString)
- synchronizerId
The unique identifier of the synchronizer that owns the operation.
- key
The key that uniquely identifies the pending operation within its scope.
- name
The name describing the type of pending operation.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val key: String
- val name: NonEmptyString
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val synchronizerId: SynchronizerId
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()