Qore Programming Language Reference Manual  0.8.12
QC_FileOutputStream.dox.h
1 namespace Qore {
4 
19 
20 public:
22 
36 nothing bulkWrite(binary data, timeout timeout_ms = -1);
37 
38 public:
40 
44 nothing close();
45 
46 public:
48 
51  constructor(string fileName, bool append = False);
52 
53 public:
55 
71 nothing write(int value, timeout timeout_ms = -1);
72 };
73 };
This class implements the OutputStream interface for writing bytes to a file.
Definition: QC_FileOutputStream.dox.h:18
constructor()
Constructor.
nothing close()
Closes the output stream and releases any resources.
nothing bulkWrite(binary data, timeout timeout_ms=-1)
Writes bytes to the input stream.
binary binary()
Always returns an empty binary object (of zero length)
const False
logical False
Definition: qc_qore.dox.h:92
This class defines an abstract interface for output streams.
Definition: QC_OutputStream.dox.h:8
nothing write(int value, timeout timeout_ms=-1)
Writes a single byte to the output stream.
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2