interface TransactorHandlerInterface in Transaction 8
Defines an interface for transactor handler.
The transactor handler controls the transaction execution.
Hierarchy
- interface \Drupal\Core\Entity\EntityHandlerInterface
- interface \Drupal\transaction\TransactorHandlerInterface
Expanded class hierarchy of TransactorHandlerInterface
All classes that implement TransactorHandlerInterface
File
- src/
TransactorHandlerInterface.php, line 13
Namespace
Drupal\transactionView source
interface TransactorHandlerInterface extends EntityHandlerInterface {
/**
* Executes a transaction.
*
* @param \Drupal\transaction\TransactionInterface $transaction
* The transaction to execute.
* @param bool $save
* Save the transaction after succeeded execution.
* @param \Drupal\User\UserInterface $executor
* (optional) The user that executes the transaction. The current user by
* default.
*
* @return bool
* TRUE if transaction was executed, FALSE otherwise.
*
* @throws \Drupal\transaction\InvalidTransactionStateException
* If the transaction is already executed.
* @throws \Drupal\transaction\Exception\ExecutionTimeoutException
* If the transaction execution time exceeds the allowed threshold.
*/
public function doExecute(TransactionInterface $transaction, $save = TRUE, UserInterface $executor = NULL);
/**
* Compose a message that describes the execution result of a transaction.
*
* @param \Drupal\transaction\TransactionInterface $transaction
* The executed transaction for which to compose the result message.
* @param string $langcode
* (optional) The language to use in message composition. Defaults to the
* current content language.
*
* @return \Drupal\Core\StringTranslation\TranslatableMarkup
* Translatable markup with the execution result message, FALSE if
* transaction execution was never called.
*/
public function composeResultMessage(TransactionInterface $transaction, $langcode = NULL);
/**
* Compose a human readable description for the given transaction.
*
* @param \Drupal\transaction\TransactionInterface $transaction
* The transaction to describe.
* @param string $langcode
* (optional) For which language the transaction description should be
* composed, defaults to the current content language.
*
* @return \Drupal\Core\StringTranslation\TranslatableMarkup
* Translatable markup with the composed description.
*/
public function composeDescription(TransactionInterface $transaction, $langcode = NULL);
/**
* Compose human readable details for the given transaction.
*
* @param \Drupal\transaction\TransactionInterface $transaction
* The transaction to detail.
* @param string $langcode
* (optional) For which language the transaction details should be
* composed, defaults to the current content language.
*
* @return \Drupal\Core\StringTranslation\TranslatableMarkup[]
* An array of translatable markup objects representing each one a line
* detailing the transaction. Empty array if no details were composed.
*/
public function composeDetails(TransactionInterface $transaction, $langcode = NULL);
/**
* Get the previous same-type transaction in order of execution.
*
* @param \Drupal\transaction\TransactionInterface $transaction
* The transaction from which to get the previous.
*
* @return \Drupal\transaction\TransactionInterface
* The previously executed transaction. NULL if this is the first one.
*
* @throws \Drupal\transaction\InvalidTransactionStateException
* If the transaction is no executed.
*/
public function getPreviousTransaction(TransactionInterface $transaction);
/**
* Get the next same-type transaction in order of execution.
*
* @param \Drupal\transaction\TransactionInterface $transaction
* The transaction from which to get the next.
*
* @return \Drupal\transaction\TransactionInterface
* The previously executed transaction. NULL if this is the last executed.
*
* @throws \Drupal\transaction\InvalidTransactionStateException
* If the transaction is no executed.
*/
public function getNextTransaction(TransactionInterface $transaction);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityHandlerInterface:: |
public static | function | Instantiates a new instance of this entity handler. | 13 |
TransactorHandlerInterface:: |
public | function | Compose a human readable description for the given transaction. | 1 |
TransactorHandlerInterface:: |
public | function | Compose human readable details for the given transaction. | 1 |
TransactorHandlerInterface:: |
public | function | Compose a message that describes the execution result of a transaction. | 1 |
TransactorHandlerInterface:: |
public | function | Executes a transaction. | 1 |
TransactorHandlerInterface:: |
public | function | Get the next same-type transaction in order of execution. | 1 |
TransactorHandlerInterface:: |
public | function | Get the previous same-type transaction in order of execution. | 1 |