diff options
author | Mark D. Roth <roth@google.com> | 2016-09-14 15:18:40 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-09-14 15:18:40 -0700 |
commit | f28763c68c9b3caf539f4d38ff123ae5de69e6d8 (patch) | |
tree | c5e7ccae33214c71f50fc006a0662bebc9e9787b /src/core/ext/client_config/subchannel.h | |
parent | a99e02cc0d165a226bf57eb49a290f3a626168d7 (diff) |
Pass deadline into filters via grpc_call_element_args, so that we can
start the timer before the first op is sent down.
Diffstat (limited to 'src/core/ext/client_config/subchannel.h')
-rw-r--r-- | src/core/ext/client_config/subchannel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/ext/client_config/subchannel.h b/src/core/ext/client_config/subchannel.h index ae1d96e640..763ff85757 100644 --- a/src/core/ext/client_config/subchannel.h +++ b/src/core/ext/client_config/subchannel.h @@ -110,7 +110,8 @@ void grpc_subchannel_call_unref(grpc_exec_ctx *exec_ctx, /** construct a subchannel call */ grpc_error *grpc_connected_subchannel_create_call( grpc_exec_ctx *exec_ctx, grpc_connected_subchannel *connected_subchannel, - grpc_polling_entity *pollent, grpc_subchannel_call **subchannel_call); + grpc_polling_entity *pollent, gpr_timespec deadline, + grpc_subchannel_call **subchannel_call); /** process a transport level op */ void grpc_connected_subchannel_process_transport_op( |