Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_WRITE_STATE_HANDLER_H
00018 #define CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_WRITE_STATE_HANDLER_H
00019
00020 #include "async_grpc/rpc_handler.h"
00021 #include "cartographer/cloud/proto/map_builder_service.pb.h"
00022 #include "google/protobuf/empty.pb.h"
00023
00024 namespace cartographer {
00025 namespace cloud {
00026 namespace handlers {
00027
00028 DEFINE_HANDLER_SIGNATURE(
00029 WriteStateSignature, google::protobuf::Empty,
00030 async_grpc::Stream<proto::WriteStateResponse>,
00031 "/cartographer.cloud.proto.MapBuilderService/WriteState")
00032
00033 class WriteStateHandler : public async_grpc::RpcHandler<WriteStateSignature> {
00034 public:
00035 void OnRequest(const google::protobuf::Empty& request) override;
00036 };
00037
00038 }
00039 }
00040 }
00041
00042 #endif // CARTOGRAPHER_CLOUD_INTERNAL_HANDLERS_WRITE_STATE_HANDLER_H