From c2eaddc457b27f181725b9f8dfcd97aa9fdbc82d Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 7 Mar 2026 11:25:38 +0100 Subject: [FEAT] Buffered and Unbuffered stream types. Signed-off-by: Amlal El Mahrouss --- doc/requirements/BufferedStream.md | 19 +++++++++++++++++++ doc/requirements/UnbufferedStream.md | 19 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 doc/requirements/BufferedStream.md create mode 100644 doc/requirements/UnbufferedStream.md (limited to 'doc') diff --git a/doc/requirements/BufferedStream.md b/doc/requirements/BufferedStream.md new file mode 100644 index 00000000..1ac01a0f --- /dev/null +++ b/doc/requirements/BufferedStream.md @@ -0,0 +1,19 @@ +# BufferedStream + +## Abstract: + +One type that has to satisfy a BufferedStream operator and type. + +## Rationale: + +- HPC systems. +- I/O systems. +- HFT systems. + +## Example: + +```cpp +BStream; +``` + +BOperator must not flush at all times, but have the option to. diff --git a/doc/requirements/UnbufferedStream.md b/doc/requirements/UnbufferedStream.md new file mode 100644 index 00000000..80536b44 --- /dev/null +++ b/doc/requirements/UnbufferedStream.md @@ -0,0 +1,19 @@ +# BufferedStream + +## Abstract: + +One type that has to satisfy an unbuffered Stream operator and type. + +## Rationale: + +- Fast and direct-flush operations. +- High-Throughput systems. + +## Example: + +```cpp +UBStream; +``` + +UBOperator must flush at all times! + -- cgit v1.2.3