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

com.azure.cosmos.implementation.directconnectivity.rntbd.RntbdChannelAcquisitionEventType Maven / Gradle / Ivy

Go to download

This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API

There is a newer version: 4.61.1
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.directconnectivity.rntbd;

public enum RntbdChannelAcquisitionEventType {
    ATTEMPT_TO_POLL_CHANNEL("poll"),
    ADD_TO_PENDING_QUEUE("pending"),
    PENDING_TIME_OUT("pendingTimeout"),
    ATTEMPT_TO_CREATE_NEW_CHANNEL("startNew"),
    ATTEMPT_TO_CREATE_NEW_CHANNEL_COMPLETE("completeNew");

    private String name;
    RntbdChannelAcquisitionEventType(String name) {
        this.name = name;
    }

    @Override
    public String toString(){
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy