Package

org.springframework.scala.transaction

support

Permalink

package support

Visibility
  1. Public
  2. All

Type Members

  1. case class AfterCompletionEvent(status: Int) extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the afterCompletion method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the afterCompletion method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    status

    completion status according to the TransactionSynchronization.STATUS_* constant

    Since

    1.0

  2. case class BeforeCommitEvent(readOnly: Boolean) extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the beforeCommit method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the beforeCommit method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    readOnly

    whether the synchronized transaction is defined as read-only transaction

    Since

    1.0

  3. sealed trait SynchronizationEvent extends AnyRef

    Permalink

    Base trait for the events triggered by the Spring org.springframework.transaction.support.TransactionSynchronizationManager.

    Base trait for the events triggered by the Spring org.springframework.transaction.support.TransactionSynchronizationManager.

    Since

    1.0

  4. trait TransactionManagement extends AnyRef

    Permalink

    Trait that simplifies functional transaction demarcation and transaction exception handling.

    Trait that simplifies functional transaction demarcation and transaction exception handling.

    The central entry point is the transactional function. This trait handles the transaction lifecycle and possible exceptions such that neither the function nor the calling code needs to explicitly handle transactions.

    Since

    1.0

  5. class TransactionTemplate extends AnyRef

    Permalink

    Scala-based convenience wrapper for the Spring org.springframework.scala.transaction.support.TransactionTemplate, taking advantage of functions and Scala types.

    Scala-based convenience wrapper for the Spring org.springframework.scala.transaction.support.TransactionTemplate, taking advantage of functions and Scala types.

    Since

    1.0

Value Members

  1. object AfterCommitEvent extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the afterCommit method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the afterCommit method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Since

    1.0

  2. object BeforeCompletionEvent extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the beforeCompletion method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the beforeCompletion method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Since

    1.0

  3. object FlushEvent extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the flush method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the flush method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Since

    1.0

  4. object ResumeEvent extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the resume method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the resume method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Since

    1.0

  5. object SuspendEvent extends SynchronizationEvent with Product with Serializable

    Permalink

    Event generated when the suspend method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Event generated when the suspend method of the org.springframework.transaction.support.TransactionSynchronization callback is executed.

    Since

    1.0

  6. object TransactionSynchronizationManager

    Permalink

    Scala-based convenience wrapper for the Spring org.springframework.transaction.support.TransactionSynchronizationManager, providing pattern matching style callbacks.

    Scala-based convenience wrapper for the Spring org.springframework.transaction.support.TransactionSynchronizationManager, providing pattern matching style callbacks.

    Since

    1.0

Ungrouped