Skip to content

Commit

Permalink
Forward ProtoReflectionService.
Browse files Browse the repository at this point in the history
  • Loading branch information
voidzcy committed Apr 13, 2021
1 parent d8412ab commit c402bf9
Showing 1 changed file with 57 additions and 0 deletions.
@@ -0,0 +1,57 @@
/*
* Copyright 2016 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.services;

import io.grpc.BindableService;
import io.grpc.ExperimentalApi;
import io.grpc.reflection.v1alpha.ServerReflectionGrpc;
import io.grpc.reflection.v1alpha.ServerReflectionRequest;
import io.grpc.reflection.v1alpha.ServerReflectionResponse;
import io.grpc.stub.StreamObserver;

/**
* Provides a reflection service for Protobuf services (including the reflection service itself).
*
* <p>Separately tracks mutable and immutable services. Throws an exception if either group of
* services contains multiple Protobuf files with declarations of the same service, method, type, or
* extension.
*
* @deprecated Use {@link io.grpc.protobuf.services.ProtoReflectionService} instead.
*/
@Deprecated
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/2222")
public final class ProtoReflectionService extends ServerReflectionGrpc.ServerReflectionImplBase {
private final io.grpc.protobuf.services.ProtoReflectionService delegate;

private ProtoReflectionService() {
delegate = (io.grpc.protobuf.services.ProtoReflectionService)
io.grpc.protobuf.services.ProtoReflectionService.newInstance();
}

/**
* Creates a instance of {@link io.grpc.protobuf.services.ProtoReflectionService}.
*/
public static BindableService newInstance() {
return new ProtoReflectionService();
}

@Override
public StreamObserver<ServerReflectionRequest> serverReflectionInfo(
StreamObserver<ServerReflectionResponse> responseObserver) {
return delegate.serverReflectionInfo(responseObserver);
}
}

0 comments on commit c402bf9

Please sign in to comment.