18 lines
543 B
C++
18 lines
543 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: ISocketServerDriver.hpp
|
||
|
Date: 2022-8-22
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::IO::Net
|
||
|
{
|
||
|
AUKN_INTERFACE(ISocketServerDriver,
|
||
|
AUI_METHOD(void, OnBind, ()),
|
||
|
AUI_METHOD(void, OnError, (const AuSPtr<ISocket> &, pSocket, const NetError &, error)),
|
||
|
AUI_METHOD(void, OnFatalErrorReported, (const NetError &, error)),
|
||
|
AUI_METHOD(void, OnFinalize, ())
|
||
|
);
|
||
|
}
|