A proxy connection buffering outgoing data into a memory region. More...
#include <bufferConnection.h>


Public Member Functions | |
| void | sendBuffer (ConnectionPtr connection) |
| uint64_t | getSize () const |
Protected Member Functions | |
| virtual void | readNB (void *buffer, const uint64_t bytes) |
| Start a read operation on the connection. | |
| virtual int64_t | readSync (void *buffer, const uint64_t bytes) |
| Finish reading data from the connection. | |
| virtual int64_t | write (const void *buffer, const uint64_t bytes) |
| Write data to the connection. | |
A proxy connection buffering outgoing data into a memory region.
Definition at line 31 of file bufferConnection.h.
| virtual void eq::net::BufferConnection::readNB | ( | void * | buffer, | |
| const uint64_t | bytes | |||
| ) | [inline, protected, virtual] |
Start a read operation on the connection.
This method is the low-level counterpart to recvNB().
This function returns immediately. The operation's Notifier will signal data availability, upon which readSync() should be used to finish the operation.
| buffer | the buffer receiving the data. | |
| bytes | the number of bytes to read. |
Implements eq::net::Connection.
Definition at line 42 of file bufferConnection.h.
| virtual int64_t eq::net::BufferConnection::readSync | ( | void * | buffer, | |
| const uint64_t | bytes | |||
| ) | [inline, protected, virtual] |
Finish reading data from the connection.
This method is the low-level counterpart to recvSync(). It may return with a partial read.
| buffer | the buffer receiving the data. | |
| bytes | the number of bytes to read. |
Implements eq::net::Connection.
Definition at line 44 of file bufferConnection.h.
| int64_t eq::net::BufferConnection::write | ( | const void * | buffer, | |
| const uint64_t | bytes | |||
| ) | [protected, virtual] |
Write data to the connection.
| buffer | the buffer containing the message. | |
| bytes | the number of bytes to write. |
Implements eq::net::Connection.
Definition at line 40 of file bufferConnection.cpp.
References eq::base::Buffer< T >::append().

0.9.1 by
1.6.1