|
Apache Log4cxx
Version 1.8.0
|
Abstract class for writing to character streams. More...
#include <outputstream.h>
Public Member Functions | |
| void | close () |
| void | flush () |
| void | write (ByteBuffer &buf) |
| virtual void | close (Pool &p)=0 |
| virtual void | flush (Pool &p)=0 |
| virtual void | write (ByteBuffer &buf, Pool &p)=0 |
| Public Member Functions inherited from log4cxx::helpers::Object | |
| virtual | ~Object () |
| virtual const helpers::Class & | getClass () const =0 |
| virtual bool | instanceof (const Class &clazz) const =0 |
| virtual const void * | cast (const Class &clazz) const =0 |
Protected Member Functions | |
| OutputStream () | |
| virtual | ~OutputStream () |
Abstract class for writing to character streams.
|
protected |
|
protectedvirtual |
| void log4cxx::helpers::OutputStream::close | ( | ) |
|
pure virtual |
pool parameter is not used and will be removed in a future version. Implement this method for now, but plan to migrate to close() without a helpers::Pool parameter. Implemented in log4cxx::helpers::ByteArrayOutputStream, log4cxx::helpers::FileOutputStream, and log4cxx::helpers::SocketOutputStream.
| void log4cxx::helpers::OutputStream::flush | ( | ) |
|
pure virtual |
pool parameter is not used and will be removed in a future version. Implement this method for now, but plan to migrate to flush() without a helpers::Pool parameter. Implemented in log4cxx::helpers::ByteArrayOutputStream, log4cxx::helpers::FileOutputStream, and log4cxx::helpers::SocketOutputStream.
| void log4cxx::helpers::OutputStream::write | ( | ByteBuffer & | buf | ) |
|
pure virtual |
pool parameter is not used and will be removed in a future version. Implement this method for now, but plan to migrate to write() without a helpers::Pool parameter. Implemented in log4cxx::helpers::ByteArrayOutputStream, log4cxx::helpers::FileOutputStream, and log4cxx::helpers::SocketOutputStream.