/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ISocketBase.hpp
Date: 2022-8-22
Author: Reece
***/
#pragma once
namespace Aurora::IO::Net
{
struct INetWorker;
struct ISocketBase
virtual AuOptional<const NetError &> GetError() = 0;
virtual const NetEndpoint &GetLocalEndpoint() = 0;
virtual void Shutdown(bool bNow = true) = 0;
virtual void Destroy() = 0;
virtual AuUInt ToPlatformHandle() = 0;
virtual AuSPtr<INetWorker> GetLockedWorkerThread() = 0;
AURT_ADD_USR_DATA;
};
}