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

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

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

package com.azure.core.amqp;

/**
 * Represents a state for a connection, session, or link.
 */
public enum AmqpEndpointState {
    /**
     * The endpoint has not been initialized.
     */
    UNINITIALIZED,
    /**
     * The endpoint is active.
     */
    ACTIVE,
    /**
     * The endpoint is closed.
     */
    CLOSED
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy