1 Star 0 Fork 418

kuoyihp/workflow

forked from 搜狗开源/workflow 
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
KafkaResult.h 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
XieHan 提交于 2021-06-23 00:46 +08:00 . Little fixes
/*
Copyright (c) 2020 Sogou, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Authors: Wang Zhulei (wangzhulei@sogou-inc.com)
*/
#ifndef _KAFKARESULT_H_
#define _KAFKARESULT_H_
#include <map>
#include <vector>
#include <string>
#include "KafkaMessage.h"
#include "KafkaDataTypes.h"
namespace protocol
{
class KafkaResult
{
public:
// for offsetcommit
void fetch_toppars(std::vector<KafkaToppar *>& toppars);
// for produce, fetch
void fetch_records(std::vector<std::vector<KafkaRecord *>>& records);
public:
void create(size_t n);
void set_resp(KafkaResponse&& resp, size_t i);
public:
KafkaResult();
virtual ~KafkaResult()
{
delete []this->resp_vec;
}
KafkaResult& operator= (KafkaResult&& move);
KafkaResult(KafkaResult&& move);
private:
KafkaResponse *resp_vec;
size_t resp_num;
};
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/qizhendong_admin/workflow.git
git@gitee.com:qizhendong_admin/workflow.git
qizhendong_admin
workflow
workflow
master

搜索帮助