Home
last modified time | relevance | path

Searched refs:grpc_rb_cCall (Results 1 – 1 of 1) sorted by relevance

/external/grpc-grpc/src/ruby/ext/grpc/
Drb_call.c35 static VALUE grpc_rb_cCall; variable
964 grpc_rb_cCall = rb_define_class_under(grpc_rb_mGrpcCore, "Call", rb_cObject); in Init_grpc_call()
969 rb_define_alloc_func(grpc_rb_cCall, grpc_rb_cannot_alloc); in Init_grpc_call()
970 rb_define_method(grpc_rb_cCall, "initialize", grpc_rb_cannot_init, 0); in Init_grpc_call()
971 rb_define_method(grpc_rb_cCall, "initialize_copy", grpc_rb_cannot_init_copy, in Init_grpc_call()
975 rb_define_method(grpc_rb_cCall, "run_batch", grpc_rb_call_run_batch, 1); in Init_grpc_call()
976 rb_define_method(grpc_rb_cCall, "cancel", grpc_rb_call_cancel, 0); in Init_grpc_call()
977 rb_define_method(grpc_rb_cCall, "cancel_with_status", in Init_grpc_call()
979 rb_define_method(grpc_rb_cCall, "close", grpc_rb_call_close, 0); in Init_grpc_call()
980 rb_define_method(grpc_rb_cCall, "peer", grpc_rb_call_get_peer, 0); in Init_grpc_call()
[all …]