mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
38 lines
817 B
C++
38 lines
817 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 net
|
|
} // namespace brynet
|