com.microsoft.azure.eventhubs.impl.ClientConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-eventhubs Show documentation
Show all versions of azure-eventhubs Show documentation
Please note, a newer package azure-messaging-eventhubs for Azure Event Hubs is available at https://search.maven.org/artifact/com.azure/azure-messaging-eventhubs as of February 2020. While this package will continue to receive critical bug fixes, we strongly encourage you to upgrade. Read the migration guide at https://aka.ms/azsdk/java/migrate/eh for more details.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.microsoft.azure.eventhubs.impl;
import org.apache.qpid.proton.amqp.Symbol;
import java.time.Duration;
public final class ClientConstants {
public static final int AMQPS_PORT = 5671;
public static final int HTTPS_PORT = 443;
public static final int MAX_PARTITION_KEY_LENGTH = 128;
public static final Symbol SERVER_BUSY_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":server-busy");
public static final Symbol ARGUMENT_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":argument-error");
public static final Symbol ARGUMENT_OUT_OF_RANGE_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":argument-out-of-range");
public static final Symbol ENTITY_DISABLED_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":entity-disabled");
public static final Symbol PARTITION_NOT_OWNED_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":partition-not-owned");
public static final Symbol STORE_LOCK_LOST_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":store-lock-lost");
public static final Symbol PUBLISHER_REVOKED_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":publisher-revoked");
public static final Symbol TIMEOUT_ERROR = Symbol.getSymbol(AmqpConstants.VENDOR + ":timeout");
public static final Symbol PROTON_IO_ERROR = Symbol.getSymbol(AmqpConstants.PROTON + ":io");
public static final Symbol TRACKING_ID_PROPERTY = Symbol.getSymbol(AmqpConstants.VENDOR + ":tracking-id");
public static final int MAX_MESSAGE_LENGTH_BYTES = 256 * 1024;
public static final int MAX_FRAME_SIZE_BYTES = 64 * 1024;
public static final int MAX_EVENTHUB_AMQP_HEADER_SIZE_BYTES = 512;
public static final Duration TIMER_TOLERANCE = Duration.ofSeconds(1);
public static final Duration DEFAULT_RETRY_MIN_BACKOFF = Duration.ofSeconds(0);
public static final Duration DEFAULT_RETRY_MAX_BACKOFF = Duration.ofSeconds(30);
public static final Duration TOKEN_REFRESH_INTERVAL = Duration.ofMinutes(5); // renew every 5 minutes, which expires 20 minutes
public static final Duration TOKEN_VALIDITY = Duration.ofMinutes(20);
public static final int DEFAULT_MAX_RETRY_COUNT = 10;
public static final boolean DEFAULT_IS_TRANSIENT = true;
public static final int REACTOR_IO_POLL_TIMEOUT = 20;
public static final int SERVER_BUSY_BASE_SLEEP_TIME_IN_SECS = 4;
public static final int MGMT_CHANNEL_MIN_RETRY_IN_MILLIS = 5;
public static final String NO_RETRY = "NoRetry";
public static final String DEFAULT_RETRY = "Default";
public static final String PRODUCT_NAME = "MSJavaClient";
public static final String CURRENT_JAVACLIENT_VERSION = "3.0.0";
public static final String PLATFORM_INFO = getPlatformInfo();
public static final String FRAMEWORK_INFO = getFrameworkInfo();
public static final String CBS_ADDRESS = "$cbs";
public static final String PUT_TOKEN_OPERATION = "operation";
public static final String PUT_TOKEN_OPERATION_VALUE = "put-token";
public static final String PUT_TOKEN_TYPE = "type";
public static final String SAS_TOKEN_TYPE = "servicebus.windows.net:sastoken";
public static final String JWT_TOKEN_TYPE = "jwt";
public static final String PUT_TOKEN_AUDIENCE = "name";
public static final String PUT_TOKEN_EXPIRY = "expiration";
public static final String PUT_TOKEN_STATUS_CODE = "status-code";
public static final String PUT_TOKEN_STATUS_DESCRIPTION = "status-description";
public static final String EVENTHUBS_AUDIENCE = "https://eventhubs.azure.net/";
public static final String MANAGEMENT_ADDRESS = "$management";
public static final String MANAGEMENT_EVENTHUB_ENTITY_TYPE = AmqpConstants.VENDOR + ":eventhub";
public static final String MANAGEMENT_PARTITION_ENTITY_TYPE = AmqpConstants.VENDOR + ":partition";
public static final String MANAGEMENT_OPERATION_KEY = "operation";
public static final String READ_OPERATION_VALUE = "READ";
public static final String MANAGEMENT_ENTITY_TYPE_KEY = "type";
public static final String MANAGEMENT_ENTITY_NAME_KEY = "name";
public static final String MANAGEMENT_PARTITION_NAME_KEY = "partition";
public static final String MANAGEMENT_SECURITY_TOKEN_KEY = "security_token";
public static final String MANAGEMENT_RESULT_PARTITION_IDS = "partition_ids";
public static final String MANAGEMENT_RESULT_PARTITION_COUNT = "partition_count";
public static final String MANAGEMENT_RESULT_CREATED_AT = "created_at";
public static final String MANAGEMENT_RESULT_BEGIN_SEQUENCE_NUMBER = "begin_sequence_number";
public static final String MANAGEMENT_RESULT_LAST_ENQUEUED_SEQUENCE_NUMBER = "last_enqueued_sequence_number";
public static final String MANAGEMENT_RESULT_LAST_ENQUEUED_OFFSET = "last_enqueued_offset";
public static final String MANAGEMENT_RESULT_LAST_ENQUEUED_TIME_UTC = "last_enqueued_time_utc";
public static final String MANAGEMENT_RESULT_PARTITION_IS_EMPTY = "is_partition_empty";
public static final String MANAGEMENT_STATUS_CODE_KEY = "status-code";
public static final String MANAGEMENT_STATUS_DESCRIPTION_KEY = "status-description";
public static final String MANAGEMENT_RESPONSE_ERROR_CONDITION = "error-condition";
public static final Symbol LAST_ENQUEUED_SEQUENCE_NUMBER = Symbol.valueOf(MANAGEMENT_RESULT_LAST_ENQUEUED_SEQUENCE_NUMBER);
public static final Symbol LAST_ENQUEUED_OFFSET = Symbol.valueOf(MANAGEMENT_RESULT_LAST_ENQUEUED_OFFSET);
public static final Symbol LAST_ENQUEUED_TIME_UTC = Symbol.valueOf(MANAGEMENT_RESULT_LAST_ENQUEUED_TIME_UTC);
public static final String AMQP_REQUEST_FAILED_ERROR = "status-code: %s, status-description: %s";
public static final String TOKEN_AUDIENCE_FORMAT = "amqp://%s/%s";
public static final String HTTPS_URI_FORMAT = "https://%s:%s";
public static final int MAX_RECEIVER_NAME_LENGTH = 64;
public static final String COMMUNICATION_EXCEPTION_GENERIC_MESSAGE = "A communication error has occurred. "
+ "This may be due to an incorrect host name in your connection string or a problem with your network connection.";
/**
* This is a constant defined to represent the start of a partition stream in EventHub.
*/
public static final String START_OF_STREAM = "-1";
/**
* This is a constant defined to represent the current end of a partition stream in EventHub.
* This can be used as an offset argument in receiver creation to start receiving from the latest
* event, instead of a specific offset or point in time.
*/
static final String END_OF_STREAM = "@latest";
private ClientConstants() {
}
private static String getPlatformInfo() {
final StringBuilder platformInfo = new StringBuilder();
platformInfo.append("arch:");
platformInfo.append(System.getProperty("os.arch"));
platformInfo.append(";os:");
platformInfo.append(System.getProperty("os.name"));
platformInfo.append(";os version:");
platformInfo.append(System.getProperty("os.version"));
return platformInfo.toString();
}
private static String getFrameworkInfo() {
final Package javaRuntimeClassPkg = Runtime.class.getPackage();
final StringBuilder frameworkInfo = new StringBuilder();
frameworkInfo.append("jre:");
frameworkInfo.append(javaRuntimeClassPkg.getImplementationVersion());
frameworkInfo.append(";vendor:");
frameworkInfo.append(javaRuntimeClassPkg.getImplementationVendor());
frameworkInfo.append(";jvm");
frameworkInfo.append(System.getProperty("java.vm.version"));
return frameworkInfo.toString();
}
}