class Poco::Net::WritableNotification

Overview

This notification is sent if a socket has become writable. Moreā€¦

#include <SocketNotification.h>

class WritableNotification: public Poco::Net::SocketNotification
{
public:
    // construction

    WritableNotification(SocketReactor* pReactor);
};

Inherited Members

public:
    // typedefs

    typedef AutoPtr<Notification> Ptr;

    // methods

    void
    duplicate() const;

    void
    release() const;

    int
    referenceCount() const;

    virtual
    std::string
    name() const;

    SocketReactor&
    source() const;

    Socket
    socket() const;

Detailed Documentation

This notification is sent if a socket has become writable.

Construction

WritableNotification(SocketReactor* pReactor)

Creates the WritableNotification for the given SocketReactor.