Reece
44108a322e
[+] TTYConsole::GetPaddingTopOfLog,GetPaddingHeadOfLog,GetPaddingTopOfLog [+ set variants] [+] IO::IOYield() [+] IO::IAsyncTransaction::Failed,GetOSErrorCode() [+] IByteBufferStreamPair [+] IIOBufferedInterceptor [+] IIOBufferedProcessor [+] IIOEventListener [+] IIOPipeEventListener [+] IIOProcessorEventListener [+] IIOProcessorManualInvoker [+] IIOWaitableIOLoopSource [+] IIOWaitableIOTimer [+] IIOWaitableItem [+] IIOWaitableTickLimiter [+] IOAdapterAsyncStream [+] IOAdapterByteBuffer [+] IOAdapterCompression [+] IOAdapterSeeking [*] Cleanup CpuInfo.Linux.cpp [*] Fixup async threadpool some more [*] LSTimer.NT.cpp updates timer object on tick state update, akin to Linux
33 lines
918 B
C++
33 lines
918 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: IOAdapterAsyncStream.hpp
|
|
Date: 2022-6-6
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::IO
|
|
{
|
|
struct IAsyncStreamAdapater
|
|
{
|
|
virtual bool SetFlushOnWrite(bool value) = 0;
|
|
|
|
virtual void ReserveBuffer(AuUInt length) = 0;
|
|
|
|
virtual AuUInt GetReadOffset() = 0;
|
|
virtual AuUInt SetReadOffset(AuUInt offset) = 0;
|
|
|
|
virtual AuUInt GetWriteOffset() = 0;
|
|
virtual AuUInt SetWriteOffset(AuUInt offset) = 0;
|
|
|
|
virtual AuSPtr<IStreamReader> ToStreamReader() = 0;
|
|
virtual AuSPtr<IStreamWriter> ToStreamWriter() = 0;
|
|
|
|
virtual AuSPtr<IIOWaitableItem> ToWaitable() = 0;
|
|
|
|
virtual bool Reset() = 0;
|
|
};
|
|
|
|
AUKN_SYM AuSPtr<IAsyncStreamAdapater> NewAsyncStreamAdapter(const AuSPtr<IAsyncTransaction> &transaction, bool isStream);
|
|
} |