class Poco::Net::IdleNotification

Overview

This notification is sent when the SocketReactor does not have any sockets to react to. Moreā€¦

#include <SocketNotification.h>

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

    IdleNotification(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 when the SocketReactor does not have any sockets to react to.

Construction

IdleNotification(SocketReactor* pReactor)

Creates the IdleNotification for the given SocketReactor.