5 Star 8 Fork 3

LittleKu/client

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Client.h 2.79 KB
一键复制 编辑 原始数据 按行查看 历史
LittleKu 提交于 2015-06-19 08:43 . 同步github
/****************************************
* class : CClient
* author : LittleKu (L.K)
* email : kklvzl@gmail.com
* date : 09-02-2014
****************************************/
#ifndef __CLIENT_H__
#define __CLIENT_H__
#pragma once
#include <boost/bind.hpp>
#include <boost/asio.hpp>
#include <boost/thread.hpp>
#include <boost/function.hpp>
#include <boost/shared_ptr.hpp>
#include <string>
#include "ClientImpl.h"
namespace client
{
class CClient
:private boost::noncopyable
{
public:
CClient();
~CClient();
/************************************************************************/
/* @brief 初始化连接池并设置接收回调 */
/* @param _In_ host 连接主机的域名或IP地址 */
/* @param _In_ port 连接主机的端口 */
/* @param _In_ cb 连接回调函数 */
/* @param _In_ thread_count 线程个数 */
/* @param _In_ connection_count 连接个数 */
/* @param _In_ connection_limit 最小连接个数 */
/************************************************************************/
void Init(const std::string &host, const std::string &port, cb_InitConnection cb, int thread_count = 1, int connection_count = 1, int connection_limit = 5);
/************************************************************************/
/* @brief 停止一切连接 */
/************************************************************************/
void Stop();
/************************************************************************/
/* @brief 投递一个发送操作 */
/* @param _In_ msg 指向要发送的一个数据指针 */
/* @param _In_ cb 发送回调函数 */
/************************************************************************/
void PostSend(CMsgBuffer::Ptr msg, cb_Request cb);
/************************************************************************/
/* @brief 重新初始化 */
/************************************************************************/
void Reset();
/************************************************************************/
/* @brief 连接池中是否有有效的连接对象可用 */
/* @return 返回true则代表连接成功,否则连接失败 */
/************************************************************************/
bool IsConnected();
private:
boost::shared_ptr<CClientImpl> m_pClientImpl;/**< 连接*/
cb_InitConnection m_cbInit;/**< 初始化回调函数*/
std::string m_host;/**< 主机域名或IP地址*/
std::string m_port;/**< 主机端口*/
};
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/LittleKu/client.git
git@gitee.com:LittleKu/client.git
LittleKu
client
client
master

搜索帮助