scala.concurrent.stm.skel

StubSTMImpl

class StubSTMImpl extends STMImpl

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. StubSTMImpl
  2. STMImpl
  3. TxnExecutor
  4. TxnContext
  5. RefFactory
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new StubSTMImpl()

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def apply[Z](block: (InTxn) ⇒ Z)(implicit mt: MaybeTxn): Z

    Executes block one or more times until an atomic execution is achieved, buffering and/or locking writes so they are not visible until success.

    Executes block one or more times until an atomic execution is achieved, buffering and/or locking writes so they are not visible until success.

    Z

    the return type of the atomic block

    block

    code to execute atomically

    returns

    the value returned from block after a successful optimistic concurrency attempt

    Definition Classes
    StubSTMImplTxnExecutor
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def compareAndSet[A, B](a: Ref[A], a0: A, a1: A, b: Ref[B], b0: B, b1: B): Boolean

    Atomically compares and sets two Refs, probably more efficiently then the corresponding transaction.

    Atomically compares and sets two Refs, probably more efficiently then the corresponding transaction. Equivalent to

    atomic { implicit t =>
    a() == a0 && b() == b0 && { a() = a1 ; b() = b1 ; true }
    }
    Definition Classes
    StubSTMImplTxnExecutor
  10. def compareAndSetIdentity[A <: AnyRef, B <: AnyRef](a: Ref[A], a0: A, a1: A, b: Ref[B], b0: B, b1: B): Boolean

    Atomically compares and sets two Refs using identity comparison, probably more efficiently then the corresponding transaction.

    Atomically compares and sets two Refs using identity comparison, probably more efficiently then the corresponding transaction. Equivalent to

    atomic { implicit t =>
    val f = (a() eq a0) && (b() eq b0)
    if (f && (a0 ne a1))
      a() = a1
    if (f && (b0 ne b1))
      b() = b1
    f
    }
    Definition Classes
    StubSTMImplTxnExecutor
  11. def dynCurrentOrNull: InTxn

    Returns the current InTxn instance if it is active or in the process of committing on the current thread, null otherwise.

    Returns the current InTxn instance if it is active or in the process of committing on the current thread, null otherwise. Always performs a dynamic lookup.

    Definition Classes
    StubSTMImplTxnContext
  12. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def findCurrent(implicit mt: MaybeTxn): Option[InTxn]

    Returns Some(txn) if txn is the InTxn active or in the process of committing on the current thread, None otherwise.

    Returns Some(txn) if txn is the InTxn active or in the process of committing on the current thread, None otherwise.

    Definition Classes
    StubSTMImplTxnContext
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. def isControlFlow(x: java.lang.Throwable): Boolean

    Returns true if x should be treated as a transfer of control, rather than an error.

    Returns true if x should be treated as a transfer of control, rather than an error. Atomic blocks that end with an uncaught control flow exception are committed, while atomic blocks that end with an uncaught error exception are rolled back.

    All implementations of this method must return true for instances that implement scala.util.control.ControlThrowable.

    Definition Classes
    StubSTMImplTxnExecutor
  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def newCommitBarrier(timeout: Long, unit: TimeUnit): CommitBarrier

    Returns a new commit barrier suitable for coordinating commits by this STM implementation.

    Returns a new commit barrier suitable for coordinating commits by this STM implementation.

    Definition Classes
    StubSTMImplSTMImpl
  22. def newRef[A](v0: A)(implicit arg0: ClassManifest[A]): Ref[A]

    T will not be one of the primitive types (for which a newRef specialization exists).

    T will not be one of the primitive types (for which a newRef specialization exists).

    Definition Classes
    StubSTMImplRefFactory
  23. def newRef(v0: Unit): Ref[Unit]

    Definition Classes
    StubSTMImplRefFactory
  24. def newRef(v0: Double): Ref[Double]

    Definition Classes
    StubSTMImplRefFactory
  25. def newRef(v0: Long): Ref[Long]

    Definition Classes
    StubSTMImplRefFactory
  26. def newRef(v0: Float): Ref[Float]

    Definition Classes
    StubSTMImplRefFactory
  27. def newRef(v0: Int): Ref[Int]

    Definition Classes
    StubSTMImplRefFactory
  28. def newRef(v0: Char): Ref[Char]

    Definition Classes
    StubSTMImplRefFactory
  29. def newRef(v0: Short): Ref[Short]

    Definition Classes
    StubSTMImplRefFactory
  30. def newRef(v0: Byte): Ref[Byte]

    Definition Classes
    StubSTMImplRefFactory
  31. def newRef(v0: Boolean): Ref[Boolean]

    Definition Classes
    StubSTMImplRefFactory
  32. def newTArray[A](xs: TraversableOnce[A])(implicit arg0: ClassManifest[A]): TArray[A]

    Definition Classes
    StubSTMImplRefFactory
  33. def newTArray[A](length: Int)(implicit arg0: ClassManifest[A]): TArray[A]

    Definition Classes
    StubSTMImplRefFactory
  34. def newTMap[A, B]: TMap[A, B]

    Definition Classes
    StubSTMImplRefFactory
  35. def newTMapBuilder[A, B]: Builder[(A, B), TMap[A, B]]

    Definition Classes
    StubSTMImplRefFactory
  36. def newTSet[A]: TSet[A]

    Definition Classes
    StubSTMImplRefFactory
  37. def newTSetBuilder[A]: Builder[A, TSet[A]]

    Definition Classes
    StubSTMImplRefFactory
  38. def newTxnLocal[A](init: ⇒ A, initialValue: (InTxn) ⇒ A, beforeCommit: (InTxn) ⇒ Unit, whilePreparing: (InTxnEnd) ⇒ Unit, whileCommitting: (InTxnEnd) ⇒ Unit, afterCommit: (A) ⇒ Unit, afterRollback: (Status) ⇒ Unit, afterCompletion: (Status) ⇒ Unit): TxnLocal[A]

    Definition Classes
    StubSTMImplRefFactory
  39. final def notify(): Unit

    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  41. def oneOf[Z](blocks: (InTxn) ⇒ Z*)(implicit mt: MaybeTxn): Z

    Atomically executes a transaction that is composed from blocks by joining with a left-biased orAtomic operator.

    Atomically executes a transaction that is composed from blocks by joining with a left-biased orAtomic operator. The following two examples are equivalent. Using orAtomic:

    atomic { implicit t =>
      // body A
    } orAtomic { implicit t =>
      // body B
    } ...

    Using oneOf:

    atomic.oneOf( { implicit t: InTxn =>
      // body A
    }, { implicit t: InTxn =>
      // body B
    } )

    The first block will be attempted in an optimistic transaction until it either succeeds, fails with no retry possible (in which case the causing exception will be rethrown), or performs a call to retry. If a retry is requested, then the next block will be attempted in the same fashion. If all blocks are explicitly retried then execution resumes at the first block, but only after another context has changed some value read by one of the attempts.

    The left-biasing of the orAtomic composition guarantees that if the first block does not call retry, no other blocks will be executed.

    Definition Classes
    StubSTMImplTxnExecutor
  42. def postDecisionFailureHandler: (Status, java.lang.Throwable) ⇒ Unit

    Returns a function that records, reports or discards exceptions that were thrown from a while-committing, after-commit or after-rollback life-cycle callback.

    Returns a function that records, reports or discards exceptions that were thrown from a while-committing, after-commit or after-rollback life-cycle callback.

    Definition Classes
    StubSTMImplTxnExecutor
  43. def pushAlternative[Z](mt: MaybeTxn, block: (InTxn) ⇒ Z): Boolean

    (rare) Associates an alternative atomic block with the current thread.

    (rare) Associates an alternative atomic block with the current thread. The next call to apply will consider block to be an alternative. Multiple alternatives may be associated before calling apply. Returns true if this is the first pushed alternative, false otherwise. This method is not usually called directly. Alternative atomic blocks are only attempted if the previous alternatives call retry.

    Note that it is not required that pushAlternative be called on the same instance of TxnExecutor as apply, just that they have been derived from the same original executor.

    Definition Classes
    StubSTMImplTxnExecutor
  44. def retryTimeoutNanos: Option[Long]

    Returns Some(t) if t is the retry timeout in nanoseconds used by this TxnExecutor, or None otherwise.

    Returns Some(t) if t is the retry timeout in nanoseconds used by this TxnExecutor, or None otherwise. If the retry timeout is Some(t) and an atomic block executed by the returned executor blocks with retry or retryFor for more than t nanoseconds the retry will be cancelled with an InterruptedException.

    The retry timeout has essentially the same effect as replacing calls to retry with { retryFor(timeout, NANOS) ; throw new InterruptedException }. Alternately, retryFor(timeout) has roughly the same effect as

    try {
      atomic.withRetryTimeout(timeout) { implicit txn => retry }
    } catch {
      case _: InterruptedException =>
    }
    Definition Classes
    StubSTMImplTxnExecutor
  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  46. def toString(): String

    Definition Classes
    AnyRef → Any
  47. def unrecorded[Z](block: (InTxn) ⇒ Z, outerFailure: (RollbackCause) ⇒ Z)(implicit mt: MaybeTxn): Z

    Performs a computation in a transaction and returns the result, but always rolls back the transaction.

    Performs a computation in a transaction and returns the result, but always rolls back the transaction. No writes performed by block will be committed or exposed to other threads. This may be useful for heuristic decisions or for debugging, as for the various dbgStr implementations.

    The caller is responsible for correctness: It is a code smell if Z is a type that is constructed from Ref, TMap, TSet, .....

    If this method is executed inside an outer transaction that has status Txn.RolledBack then block can't complete. The default behavior (if outerFailure is null) in that case is to immediately roll back the outer transaction. If a non-null outerFailure handler has been provided, however, it allow this method to return. This is useful when the unrecorded transaction is being used for debugging or logging.

    atomic.unrecorded { implicit txn => code } is roughly equivalent to the following, except that the rollback cause used will be Txn.UnrecordedTxnCause:

    case class Tunnel(z: Z) extends Exception {}
    try {
      atomic.withControlFlowRecognizer({
        case Tunnel(_) => false
      }) { implicit txn =>
        throw Tunnel(code)
      }
    } catch {
      case Tunnel(z) => z
    }
    Definition Classes
    StubSTMImplTxnExecutor
  48. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. def withControlFlowRecognizer(pf: PartialFunction[java.lang.Throwable, Boolean]): TxnExecutor

    Returns a TxnExecutor e that is identical to this one, except that e.isControlFlow(x) will return pf(x) if pf.isDefined(x).

    Returns a TxnExecutor e that is identical to this one, except that e.isControlFlow(x) will return pf(x) if pf.isDefined(x). For exceptions for which pf is not defined the decision will be deferred to the previous implementation.

    This function may be combined with TxnExecutor.transformDefault to add system-wide recognition of a control-transfer exception that does not extend scala.util.control.ControlThrowable. For example, to modify the default behavior of all TxnExecutor.isControlFlow calls to accept DSLNonLocalControlTransferException:

    TxnExecutor.transformDefault { e =>
    e.withControlFlowRecognizer {
      case _: DSLNonLocalControlTransferException => true
    }
    }
    Definition Classes
    StubSTMImplTxnExecutor
  52. def withPostDecisionFailureHandler(handler: (Status, java.lang.Throwable) ⇒ Unit): TxnExecutor

    Returns a TxnExecutor e that is identical to this one, except that e.postDecisionFailureHandler will return handler.

    Returns a TxnExecutor e that is identical to this one, except that e.postDecisionFailureHandler will return handler. This function may be called from inside a function passed to TxnExecutor.transformDefault to change the system-wide post-decision failure handler.

    Definition Classes
    StubSTMImplTxnExecutor
  53. def withRetryTimeout(timeout: Long, unit: TimeUnit = TimeUnit.MILLISECONDS): TxnExecutor

    Returns a TxnExecutor that is identical to this one except that it has the specified retry timeout.

    Returns a TxnExecutor that is identical to this one except that it has the specified retry timeout. The default time unit is milliseconds. If the retry timeout expires the retry will be cancelled with an InterruptedException.

    Definition Classes
    TxnExecutor
  54. def withRetryTimeoutNanos(timeout: Option[Long]): TxnExecutor

    Returns a TxnExecutor that is identical to this one, except that it has a retryTimeout of timeoutNanos.

    Returns a TxnExecutor that is identical to this one, except that it has a retryTimeout of timeoutNanos.

    Definition Classes
    StubSTMImplTxnExecutor

Inherited from STMImpl

Inherited from TxnExecutor

Inherited from TxnContext

Inherited from RefFactory

Inherited from AnyRef

Inherited from Any

Ungrouped