From e1bdd7825e47a96dc07562ea8d625513f8135ff0 Mon Sep 17 00:00:00 2001 From: Alex Pavlov Date: Wed, 24 Feb 2021 09:40:44 +0300 Subject: [PATCH] Added constants for buffer`s mode Closes GH-461. --- reference/stream/constants.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/reference/stream/constants.xml b/reference/stream/constants.xml index c1bb9bb745..a09fbb4709 100644 --- a/reference/stream/constants.xml +++ b/reference/stream/constants.xml @@ -359,6 +359,24 @@ Used with stream_metadata, to specify chmod call. + + STREAM_BUFFER_NONE + + No buffering. + + + + STREAM_BUFFER_LINE + + Line buffering. + + + + STREAM_BUFFER_FULL + + Full buffering. + +