All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.core.amqp.AmqpTransaction Maven / Gradle / Ivy

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.core.amqp;

import com.azure.core.util.FluxUtil;

import java.nio.ByteBuffer;
import java.nio.charset.StandardCharsets;
import java.util.Objects;

/**
 * Represents transaction in message broker. It does not do any network operation on its own. It contains meta data
 * about transaction such as transaction id.
 *
 */
public class AmqpTransaction {

    private final ByteBuffer transactionId;

    /**
     * Creates {@link AmqpTransaction} given {@code transactionId}.
     *
     * @param transactionId The id for this transaction.
     *
     * @throws NullPointerException if {@code transactionId} is null.
     */
    public AmqpTransaction(ByteBuffer transactionId) {
        this.transactionId = Objects.requireNonNull(transactionId, "'transactionId' cannot be null.");
    }

    /**
     * Gets the id for this transaction.
     *
     * @return The id for this transaction.
     */
    public ByteBuffer getTransactionId() {
        return transactionId;
    }

    /**
     * String representation of the transaction id.
     *
     * @return string representation of the transaction id.
     */
    public String toString() {
        if (transactionId.hasArray()) {
            return new String(transactionId.array(), transactionId.arrayOffset() + transactionId.position(),
                transactionId.remaining(), StandardCharsets.UTF_8);
        } else {
            return new String(FluxUtil.byteBufferToArray(transactionId.duplicate()), StandardCharsets.UTF_8);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy