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

io.grpc.grpclb.SubchannelPool Maven / Gradle / Ivy

There is a newer version: 1.69.0
Show newest version
/*
 * Copyright 2018 The gRPC Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.grpc.grpclb;

import io.grpc.Attributes;
import io.grpc.ConnectivityStateInfo;
import io.grpc.EquivalentAddressGroup;
import io.grpc.LoadBalancer;
import io.grpc.LoadBalancer.Helper;
import io.grpc.LoadBalancer.Subchannel;
import javax.annotation.concurrent.NotThreadSafe;

/**
 * Manages life-cycle of Subchannels for {@link GrpclbState}.
 *
 * 

All methods are run from the ChannelExecutor that the helper uses. */ @NotThreadSafe interface SubchannelPool { /** * Pass essential utilities and the balancer that's using this pool. */ void init(Helper helper, LoadBalancer lb); /** * Takes a {@link Subchannel} from the pool for the given {@code eag} if there is one available. * Otherwise, creates and returns a new {@code Subchannel} with the given {@code eag} and {@code * defaultAttributes}. */ Subchannel takeOrCreateSubchannel(EquivalentAddressGroup eag, Attributes defaultAttributes); /** * Gets notified about a state change of Subchannel that is possibly cached in this pool. Do * nothing if this pool doesn't own this Subchannel. */ void handleSubchannelState(Subchannel subchannel, ConnectivityStateInfo newStateInfo); /** * Puts a {@link Subchannel} back to the pool. From this point the Subchannel is owned by the * pool, and the caller should stop referencing to this Subchannel. */ void returnSubchannel(Subchannel subchannel, ConnectivityStateInfo lastKnownState); /** * Shuts down all subchannels in the pool immediately. */ void clear(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy