blob: 7957006698dd83ad3e5807af73f486d35a8bb23f [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
*
* 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 org.onosproject.grpc.api;
import com.google.common.annotations.Beta;
import java.util.concurrent.CompletableFuture;
/**
* Abstraction of a gRPC client.
*/
@Beta
public interface GrpcClient {
/**
* Shutdowns the client by terminating any active RPC.
*/
void shutdown();
/**
* This method provides a coarse modelling of gRPC channel {@link
* io.grpc.ConnectivityState}. The implementation does not make any attempt
* at probing the server by sending messages over the network, as such it
* does not block execution. It returns true if this client is expected to
* communicate with the server successfully. In other words, if any RPC
* would be executed immediately after this method is called and returns
* true, then it is expected, but NOT guaranteed, for that RPC message to
* reach the server and be processed. If false, it means the channel is in a
* failure state and communication with the server is unlikely to happen
* soon.
*
* @return true if server is deemed reachable, false otherwise
*/
boolean isServerReachable();
/**
* Similar to {@link #isServerReachable()}, but might involve sending
* packets over the network. This checks whether the specific gRPC
* service(s) required by this client is available or not on the server.
*
* @return completable future eventually true if the gRPC service(s) on the
* server was available during the probe; false otherwise
*/
CompletableFuture<Boolean> probeService();
}