Freigeben über


ServiceBusTransactionContext Klasse

  • java.lang.Object
    • com.azure.messaging.servicebus.ServiceBusTransactionContext

public final class ServiceBusTransactionContext

Stellt die Transaktion im Dienst dar. Dieses Objekt enthält nur die Transaktions-ID. Transaktionsverwaltungsvorgänge wie Erstellen von Transaktionen, Rollbacks und Commitvorgängen müssen mithilfe der Sender- oder Empfängerclients ausgeführt werden.

Eine Transaktion weist nach zwei Minuten einen Timeout auf. Der Transaktionszeitgeber startet, wenn der erste Vorgang in der Transaktion gestartet wird.

Erstellen und Verwenden einer Transaktion

// This mono creates a transaction and caches the output value, so we can associate operations with the
 // transaction. It does not cache the value if it is an error or completes with no items, effectively retrying
 // the operation.
 Mono<ServiceBusTransactionContext> transactionContext = asyncReceiver.createTransaction()
     .cache(value -> Duration.ofMillis(Long.MAX_VALUE),
         error -> Duration.ZERO,
         () -> Duration.ZERO);

 // Dispose of the disposable to cancel the operation.
 Disposable disposable = transactionContext.flatMap(transaction -> {
     // Process messages and associate operations with the transaction.
     Mono<Void> operations = Mono.when(
         asyncReceiver.receiveDeferredMessage(sequenceNumber).flatMap(message ->
             asyncReceiver.complete(message, new CompleteOptions().setTransactionContext(transaction))),
         asyncReceiver.abandon(receivedMessage, new AbandonOptions().setTransactionContext(transaction)));

     // Finally, either commit or rollback the transaction once all the operations are associated with it.
     return operations.then(asyncReceiver.commitTransaction(transaction));
 }).subscribe(unused -> {
 }, error -> {
     System.err.println("Error occurred processing transaction: " + error);
 }, () -> {
     System.out.println("Completed transaction");
 });

Methodenzusammenfassung

Modifizierer und Typ Methode und Beschreibung
ByteBuffer getTransactionId()

Ruft die Transaktions-ID ab.

Geerbte Methoden von java.lang.Object

Details zur Methode

getTransactionId

public ByteBuffer getTransactionId()

Ruft die Transaktions-ID ab.

Returns:

Transaktions-ID

Gilt für: