class Poco::Net::ErrorNotification

Overview

This notification is sent if a socket has signalled an error. Moreā€¦

#include <SocketNotification.h>

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

    ErrorNotification(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 signalled an error.

Construction

ErrorNotification(SocketReactor* pReactor)

Creates the ErrorNotification for the given SocketReactor.