com.azure.core.amqp.AmqpEndpointState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-core-amqp Show documentation
Show all versions of azure-core-amqp Show documentation
This package contains core types for Azure Java AMQP clients.
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