aboutsummaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorjbingham-google <40675267+jbingham-google@users.noreply.github.com>2018-07-10 14:24:50 -0600
committerCarl Mastrangelo <notcarl@google.com>2018-07-10 13:24:50 -0700
commitffcb3b964bd908dda5793daf82cd0e2556b54592 (patch)
treea5049e753767a1808721b8fa27654860471da911 /benchmarks
parent32d50eb3b3ed9d0701ad352dacc7d71e2d6425f1 (diff)
downloadgrpc-grpc-java-ffcb3b964bd908dda5793daf82cd0e2556b54592.tar.gz
compiler, stub: Rename inputType and outputType in @RpcMethod
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java20
-rw-r--r--benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ReportQpsScenarioServiceGrpc.java4
-rw-r--r--benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java16
3 files changed, 20 insertions, 20 deletions
diff --git a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java
index 6be515010..77b6ae6a2 100644
--- a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java
+++ b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/BenchmarkServiceGrpc.java
@@ -33,8 +33,8 @@ public final class BenchmarkServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.BenchmarkService",
methodName = "UnaryCall",
- inputType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
- outputType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
+ requestType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
+ responseType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest,
io.grpc.benchmarks.proto.Messages.SimpleResponse> getUnaryCallMethod() {
@@ -66,8 +66,8 @@ public final class BenchmarkServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.BenchmarkService",
methodName = "StreamingCall",
- inputType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
- outputType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
+ requestType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
+ responseType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest,
io.grpc.benchmarks.proto.Messages.SimpleResponse> getStreamingCallMethod() {
@@ -99,8 +99,8 @@ public final class BenchmarkServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.BenchmarkService",
methodName = "StreamingFromClient",
- inputType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
- outputType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
+ requestType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
+ responseType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.CLIENT_STREAMING)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest,
io.grpc.benchmarks.proto.Messages.SimpleResponse> getStreamingFromClientMethod() {
@@ -132,8 +132,8 @@ public final class BenchmarkServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.BenchmarkService",
methodName = "StreamingFromServer",
- inputType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
- outputType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
+ requestType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
+ responseType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.SERVER_STREAMING)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest,
io.grpc.benchmarks.proto.Messages.SimpleResponse> getStreamingFromServerMethod() {
@@ -165,8 +165,8 @@ public final class BenchmarkServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.BenchmarkService",
methodName = "StreamingBothWays",
- inputType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
- outputType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
+ requestType = io.grpc.benchmarks.proto.Messages.SimpleRequest.class,
+ responseType = io.grpc.benchmarks.proto.Messages.SimpleResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Messages.SimpleRequest,
io.grpc.benchmarks.proto.Messages.SimpleResponse> getStreamingBothWaysMethod() {
diff --git a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ReportQpsScenarioServiceGrpc.java b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ReportQpsScenarioServiceGrpc.java
index 3eb572cca..1ae1d0160 100644
--- a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ReportQpsScenarioServiceGrpc.java
+++ b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/ReportQpsScenarioServiceGrpc.java
@@ -33,8 +33,8 @@ public final class ReportQpsScenarioServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.ReportQpsScenarioService",
methodName = "ReportScenario",
- inputType = io.grpc.benchmarks.proto.Control.ScenarioResult.class,
- outputType = io.grpc.benchmarks.proto.Control.Void.class,
+ requestType = io.grpc.benchmarks.proto.Control.ScenarioResult.class,
+ responseType = io.grpc.benchmarks.proto.Control.Void.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Control.ScenarioResult,
io.grpc.benchmarks.proto.Control.Void> getReportScenarioMethod() {
diff --git a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java
index 1db4066c4..2d9fdabe9 100644
--- a/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java
+++ b/benchmarks/src/generated/main/grpc/io/grpc/benchmarks/proto/WorkerServiceGrpc.java
@@ -33,8 +33,8 @@ public final class WorkerServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.WorkerService",
methodName = "RunServer",
- inputType = io.grpc.benchmarks.proto.Control.ServerArgs.class,
- outputType = io.grpc.benchmarks.proto.Control.ServerStatus.class,
+ requestType = io.grpc.benchmarks.proto.Control.ServerArgs.class,
+ responseType = io.grpc.benchmarks.proto.Control.ServerStatus.class,
methodType = io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Control.ServerArgs,
io.grpc.benchmarks.proto.Control.ServerStatus> getRunServerMethod() {
@@ -66,8 +66,8 @@ public final class WorkerServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.WorkerService",
methodName = "RunClient",
- inputType = io.grpc.benchmarks.proto.Control.ClientArgs.class,
- outputType = io.grpc.benchmarks.proto.Control.ClientStatus.class,
+ requestType = io.grpc.benchmarks.proto.Control.ClientArgs.class,
+ responseType = io.grpc.benchmarks.proto.Control.ClientStatus.class,
methodType = io.grpc.MethodDescriptor.MethodType.BIDI_STREAMING)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Control.ClientArgs,
io.grpc.benchmarks.proto.Control.ClientStatus> getRunClientMethod() {
@@ -99,8 +99,8 @@ public final class WorkerServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.WorkerService",
methodName = "CoreCount",
- inputType = io.grpc.benchmarks.proto.Control.CoreRequest.class,
- outputType = io.grpc.benchmarks.proto.Control.CoreResponse.class,
+ requestType = io.grpc.benchmarks.proto.Control.CoreRequest.class,
+ responseType = io.grpc.benchmarks.proto.Control.CoreResponse.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Control.CoreRequest,
io.grpc.benchmarks.proto.Control.CoreResponse> getCoreCountMethod() {
@@ -132,8 +132,8 @@ public final class WorkerServiceGrpc {
@io.grpc.stub.annotations.RpcMethod(
fullServiceName = "grpc.testing.WorkerService",
methodName = "QuitWorker",
- inputType = io.grpc.benchmarks.proto.Control.Void.class,
- outputType = io.grpc.benchmarks.proto.Control.Void.class,
+ requestType = io.grpc.benchmarks.proto.Control.Void.class,
+ responseType = io.grpc.benchmarks.proto.Control.Void.class,
methodType = io.grpc.MethodDescriptor.MethodType.UNARY)
public static io.grpc.MethodDescriptor<io.grpc.benchmarks.proto.Control.Void,
io.grpc.benchmarks.proto.Control.Void> getQuitWorkerMethod() {