mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
42 lines
908 B
C++
42 lines
908 B
C++
#pragma once
|
|
|
|
#include <brynet/net/detail/ConnectorDetail.hpp>
|
|
|
|
namespace brynet { namespace net {
|
|
|
|
using ConnectOption = detail::ConnectOption;
|
|
class AsyncConnector : public detail::AsyncConnectorDetail,
|
|
public std::enable_shared_from_this<AsyncConnector>
|
|
{
|
|
public:
|
|
using Ptr = std::shared_ptr<AsyncConnector>;
|
|
|
|
void startWorkerThread()
|
|
{
|
|
detail::AsyncConnectorDetail::startWorkerThread();
|
|
}
|
|
|
|
void stopWorkerThread()
|
|
{
|
|
detail::AsyncConnectorDetail::stopWorkerThread();
|
|
}
|
|
|
|
void asyncConnect(const ConnectOption& option)
|
|
{
|
|
detail::AsyncConnectorDetail::asyncConnect(option);
|
|
}
|
|
|
|
static Ptr Create()
|
|
{
|
|
class make_shared_enabler : public AsyncConnector
|
|
{
|
|
};
|
|
return std::make_shared<make_shared_enabler>();
|
|
}
|
|
|
|
private:
|
|
AsyncConnector() = default;
|
|
};
|
|
|
|
}}// namespace brynet::net
|