mirror of
https://github.com/logos-co/logos-cpp-sdk.git
synced 2026-08-31 09:41:06 +00:00
allow getting client over specific transport
This commit is contained in:
@@ -13,6 +13,18 @@ LogosAPIClient::LogosAPIClient(const QString& module_to_talk_to, const QString&
|
||||
{
|
||||
}
|
||||
|
||||
LogosAPIClient::LogosAPIClient(const QString& module_to_talk_to,
|
||||
const QString& origin_module,
|
||||
TokenManager* token_manager,
|
||||
const LogosTransportConfig& transport,
|
||||
QObject *parent)
|
||||
: QObject(parent)
|
||||
, m_consumer(new LogosAPIConsumer(module_to_talk_to, origin_module, token_manager, transport, this))
|
||||
, m_token_manager(token_manager)
|
||||
, m_origin_module(origin_module)
|
||||
{
|
||||
}
|
||||
|
||||
LogosAPIClient::~LogosAPIClient()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user