mirror of
https://github.com/unclechu/gRPC-haskell.git
synced 2024-11-05 10:49:42 +01:00
12 lines
325 B
C
12 lines
325 B
C
|
#include <grpc/grpc.h>
|
||
|
|
||
|
grpc_event *grpc_completion_queue_next_(grpc_completion_queue *cq, gpr_timespec *deadline) {
|
||
|
grpc_completion_queue_next(cq, *deadline);
|
||
|
}
|
||
|
|
||
|
grpc_event* grpc_completion_queue_pluck_(grpc_completion_queue *cq, void *tag, gpr_timespec *deadline) {
|
||
|
grpc_completion_queue_pluck(cq, tag, *deadline);
|
||
|
}
|
||
|
|
||
|
|