修改pods
This commit is contained in:
10
Pods/gRPC-C++/include/grpcpp/server_interface.h
generated
10
Pods/gRPC-C++/include/grpcpp/server_interface.h
generated
@@ -19,11 +19,9 @@
|
||||
#ifndef GRPCPP_SERVER_INTERFACE_H
|
||||
#define GRPCPP_SERVER_INTERFACE_H
|
||||
|
||||
#include <grpc/support/port_platform.h>
|
||||
|
||||
#include <grpc/grpc.h>
|
||||
#include <grpc/impl/grpc_types.h>
|
||||
#include <grpc/support/log.h>
|
||||
#include <grpc/support/port_platform.h>
|
||||
#include <grpc/support/time.h>
|
||||
#include <grpcpp/impl/call.h>
|
||||
#include <grpcpp/impl/call_hook.h>
|
||||
@@ -33,6 +31,8 @@
|
||||
#include <grpcpp/server_context.h>
|
||||
#include <grpcpp/support/byte_buffer.h>
|
||||
|
||||
#include "absl/log/absl_check.h"
|
||||
|
||||
namespace grpc {
|
||||
|
||||
class AsyncGenericService;
|
||||
@@ -319,7 +319,7 @@ class ServerInterface : public internal::CallHook {
|
||||
grpc::CompletionQueue* call_cq,
|
||||
grpc::ServerCompletionQueue* notification_cq, void* tag,
|
||||
Message* message) {
|
||||
GPR_ASSERT(method);
|
||||
ABSL_CHECK(method);
|
||||
new PayloadAsyncRequest<Message>(method, this, context, stream, call_cq,
|
||||
notification_cq, tag, message);
|
||||
}
|
||||
@@ -330,7 +330,7 @@ class ServerInterface : public internal::CallHook {
|
||||
grpc::CompletionQueue* call_cq,
|
||||
grpc::ServerCompletionQueue* notification_cq,
|
||||
void* tag) {
|
||||
GPR_ASSERT(method);
|
||||
ABSL_CHECK(method);
|
||||
new NoPayloadAsyncRequest(method, this, context, stream, call_cq,
|
||||
notification_cq, tag);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user