* Return a monitor for the number of outstanding bytes pending write to this network
* connection
*/
@Override
public QueueMonitor writestreamMonitor() {
return new QueueMonitor() {
@Override
public boolean queue(int bytes) {
return m_acg.get().queue(bytes);
}
};