1#ifndef Cpl_Io_AtomicOutput_h_
2#define Cpl_Io_AtomicOutput_h_
32template <
class CONTEXT>
63 bool write(
const void* buffer,
int maxBytes,
int& bytesWritten );
81template <
class CONTEXT>
89template <
class CONTEXT>
93 bool io = (client.*clientsMethod)(m_stream);
97template <
class CONTEXT>
101 bool io = m_stream.write( buffer, maxBytes, bytesWritten );
105template <
class CONTEXT>
112template <
class CONTEXT>
116 return m_stream.isEos();
119template <
class CONTEXT>
This abstract template class defines a interface for an Atomic outputs to a stream.
Definition AtomicOutputApi.h:42
This concrete template class implements the AtomicOutputApi using a mutex to enforce the 'atomic-ness...
Definition AtomicOutput.h:34
AtomicOutput(Output &stream, Cpl::System::Mutex &lock)
The application is responsible for supplying the actual Output stream.
Definition AtomicOutput.h:82
bool isEos()
See Cpl::Io::IsEos.
Definition AtomicOutput.h:113
void flush()
See Cpl::Io::Output.
Definition AtomicOutput.h:106
bool write(const void *buffer, int maxBytes, int &bytesWritten)
See Cpl::Io::Output.
Definition AtomicOutput.h:98
void close()
See Cpl::Io::Output.
Definition AtomicOutput.h:120
Output & m_stream
Underlying output stream.
Definition AtomicOutput.h:37
Cpl::System::Mutex & m_lock
Lock to provide the 'atomic' functionality.
Definition AtomicOutput.h:40
bool requestOutputs(CONTEXT &client, typename AtomicOutputApi< CONTEXT >::OutputsFunction_T clientsMethod)
See AtomicOutputApi.
Definition AtomicOutput.h:90
This partially abstract class defines a interface for operating on an output stream (example of a str...
Definition Output.h:34
virtual bool write(char c)
Writes a single byte to the stream.
This concrete class provides a simple mechanism for providing mutex protection for a "scope block".
Definition Mutex.h:77
This mutex class defines the interface for a mutex that has "recursive" semantics.
Definition Mutex.h:33
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20