activemq-cpp-3.6.0
decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream Class Reference

OutputStream implementation used to write data to an OpenSSLSocket instance. More...

#include <src/main/decaf/internal/net/ssl/openssl/OpenSSLSocketOutputStream.h>

Inheritance diagram for decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream:

Public Member Functions

 OpenSSLSocketOutputStream (OpenSSLSocket *socket)
virtual ~OpenSSLSocketOutputStream ()
virtual void close ()
 Closes this object and deallocates the appropriate resources.The object is generally no longer usable after calling close.
Exceptions
IOExceptionif an error occurs while closing.
The default implementation of this method does nothing.
- Public Member Functions inherited from decaf::io::OutputStream
 OutputStream ()
virtual ~OutputStream ()
virtual void flush ()
 Flushes this stream by writing any buffered output to the underlying stream.
Exceptions
IOExceptionif an I/O error occurs.

virtual void write (unsigned char c)
 Writes a single byte to the output stream.
virtual void write (const unsigned char *buffer, int size)
 Writes an array of bytes to the output stream.
virtual void write (const unsigned char *buffer, int size, int offset, int length)
 Writes an array of bytes to the output stream in order starting at buffer[offset] and proceeding until the number of bytes specified by the length argument are written or an error occurs.
virtual std::string toString () const
 Output a String representation of this object.
virtual void lock ()
 Locks the object.
virtual bool tryLock ()
 Attempts to Lock the object, if the lock is already held by another thread than this method returns false.
virtual void unlock ()
 Unlocks the object.
virtual void wait ()
 Waits on a signal from this object, which is generated by a call to Notify.
virtual void wait (long long millisecs)
 Waits on a signal from this object, which is generated by a call to Notify.
virtual void wait (long long millisecs, int nanos)
 Waits on a signal from this object, which is generated by a call to Notify.
virtual void notify ()
 Signals a waiter on this object that it can now wake up and continue.
virtual void notifyAll ()
 Signals the waiters on this object that it can now wake up and continue.
- Public Member Functions inherited from decaf::io::Closeable
virtual ~Closeable ()
- Public Member Functions inherited from decaf::io::Flushable
virtual ~Flushable ()
- Public Member Functions inherited from decaf::util::concurrent::Synchronizable
virtual ~Synchronizable ()

Protected Member Functions

virtual void doWriteByte (unsigned char c)
virtual void doWriteArrayBounded (const unsigned char *buffer, int size, int offset, int length)
- Protected Member Functions inherited from decaf::io::OutputStream
virtual void doWriteArray (const unsigned char *buffer, int size)

Detailed Description

OutputStream implementation used to write data to an OpenSSLSocket instance.

Since
1.0

Constructor & Destructor Documentation

decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream::OpenSSLSocketOutputStream ( OpenSSLSocket socket)
virtual decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream::~OpenSSLSocketOutputStream ( )
virtual

Member Function Documentation

virtual void decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream::close ( )
virtual

Closes this object and deallocates the appropriate resources.The object is generally no longer usable after calling close.

Exceptions
IOExceptionif an error occurs while closing.
The default implementation of this method does nothing.

The default implementation of this method does nothing.

Reimplemented from decaf::io::OutputStream.

virtual void decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream::doWriteArrayBounded ( const unsigned char *  buffer,
int  size,
int  offset,
int  length 
)
protectedvirtual

Reimplemented from decaf::io::OutputStream.

virtual void decaf::internal::net::ssl::openssl::OpenSSLSocketOutputStream::doWriteByte ( unsigned char  c)
protectedvirtual

The documentation for this class was generated from the following file: