2022-06-11 23:01:27 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: IOExperimental.hpp
|
|
|
|
Date: 2022-6-6
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#pragma once
|
|
|
|
|
2022-06-21 04:49:36 +00:00
|
|
|
#include "EPipeCallbackType.hpp"
|
|
|
|
|
2022-06-11 23:01:27 +00:00
|
|
|
#include "IIOProcessorManualInvoker.hpp"
|
|
|
|
|
|
|
|
#include "IIOWaitableItem.hpp"
|
|
|
|
#include "IIOEventListener.hpp"
|
2022-06-22 13:42:17 +00:00
|
|
|
#include "IIOSimpleEventListener.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
|
|
|
|
#include "EIOProcessorEventStage.hpp"
|
|
|
|
#include "IIOPipeEventListener.hpp"
|
|
|
|
|
2022-06-21 04:49:36 +00:00
|
|
|
#include "IIOBufferedStreamAvailable.hpp"
|
|
|
|
|
|
|
|
#include "IPipeBackend.hpp"
|
|
|
|
|
|
|
|
#include "IOPipeCallback.hpp"
|
|
|
|
#include "IOPipeInputData.hpp" // ipipebackend required
|
|
|
|
|
|
|
|
#include "IOPipeRequest.hpp"
|
|
|
|
#include "IOPipeRequestAIO.hpp"
|
|
|
|
#include "IOPipeRequestBasic.hpp"
|
|
|
|
|
|
|
|
#include "IIOPipeInterceptor.hpp"
|
|
|
|
#include "IIOPipeWork.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
#include "IIOPipeProcessor.hpp"
|
|
|
|
|
2022-06-21 04:49:36 +00:00
|
|
|
#include "IIOProcessorWorkUnit.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
#include "IIOProcessorEventListener.hpp"
|
|
|
|
#include "IIOProcessorItem.hpp"
|
|
|
|
#include "IIOProcessor.hpp"
|
|
|
|
|
|
|
|
//#include "IBufferedWriterToReader.hpp"
|
|
|
|
//#include "IBufferedReadProcessorToReader.hpp"
|
|
|
|
|
|
|
|
#include "IIOPipeInterceptor.hpp"
|
2023-09-28 11:22:42 +00:00
|
|
|
#include "Utility/IIOBufferedProcessor.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
|
2023-09-28 10:51:46 +00:00
|
|
|
#include "Utility/IByteBufferStreamPair.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
|
2023-09-23 15:40:13 +00:00
|
|
|
#include "Adapters/IOAdapterAsyncStream.hpp"
|
|
|
|
#include "Adapters/IOAdapterByteBuffer.hpp"
|
|
|
|
#include "Adapters/IOAdapterCompression.hpp"
|
|
|
|
#include "Adapters/IOAdapterSeeking.hpp"
|
2023-10-13 20:08:00 +00:00
|
|
|
#include "Adapters/IOAdapterMemoryView.hpp"
|
2022-06-11 23:01:27 +00:00
|
|
|
|
|
|
|
#include "IIOWaitableTickLimiter.hpp"
|
|
|
|
#include "IIOWaitableIOTimer.hpp"
|
|
|
|
#include "IIOWaitableIOLoopSource.hpp"
|
|
|
|
|
|
|
|
#include "IOPipeInterceptorNop.hpp"
|