aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/impl/codegen/rpc_method.h
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-08-25 15:33:02 -0700
committerGravatar Vijay Pai <vpai@google.com>2016-08-25 15:33:02 -0700
commitcdc253535bb879918b9bd66b29007f27219f6e2e (patch)
tree9208a299a0747e18628c03828ce3c93d3b00fca2 /include/grpc++/impl/codegen/rpc_method.h
parentac4113bef128abd57cc166a4921063b0b4c5278d (diff)
Remove FC_UNARY enum and treat it more like a special case of BIDI_STREAMING
in all cases
Diffstat (limited to 'include/grpc++/impl/codegen/rpc_method.h')
-rw-r--r--include/grpc++/impl/codegen/rpc_method.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/grpc++/impl/codegen/rpc_method.h b/include/grpc++/impl/codegen/rpc_method.h
index b55d755075..4897428074 100644
--- a/include/grpc++/impl/codegen/rpc_method.h
+++ b/include/grpc++/impl/codegen/rpc_method.h
@@ -46,8 +46,7 @@ class RpcMethod {
NORMAL_RPC = 0,
CLIENT_STREAMING, // request streaming
SERVER_STREAMING, // response streaming
- BIDI_STREAMING,
- FC_UNARY // flow-controlled unary call
+ BIDI_STREAMING
};
RpcMethod(const char* name, RpcType type)