68 lines
1.2 KiB
C++
68 lines
1.2 KiB
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: NetworkingPool.cpp
|
||
|
Date: 2022-2-1
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#include <Source/RuntimeInternal.hpp>
|
||
|
#include "Net.hpp"
|
||
|
#include "NetworkingPool.hpp"
|
||
|
|
||
|
namespace Aurora::IO::Net
|
||
|
{
|
||
|
AuUInt32 NetworkingPool::Pump(AuUInt8 workerId)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
AuUInt32 NetworkingPool::PumpRead(AuUInt8 workerId)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
AuUInt32 NetworkingPool::PumpWrite(AuUInt8 workerId)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
AuUInt32 NetworkingPool::PollWorker(AuUInt8 workerId)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
AuUInt32 NetworkingPool::RunWorker(AuUInt8 workerId, AuUInt32 timeout)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
bool NetworkingPool::BeginReadPollingOnWorkQueues(const WorkPoolGroup &workGroup)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
bool NetworkingPool::BeginSubmissionsOnOnWorkQueues(const WorkPoolGroup &workGroup)
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
void NetworkingPool::StopPollingOnWorkQueues()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
AuUInt8 NetworkingPool::GetWorkers()
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
AuSPtr<INetworkInterface> NetworkingPool::GetNetworkInterface()
|
||
|
{
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
void NetworkingPool::Shutdown()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|