struct Poco::AbstractEvent::NotifyAsyncParams

Overview

#include <AbstractEvent.h>

struct NotifyAsyncParams
{
    // fields

    SharedPtr<TStrategy> ptrStrat;
    const void* pSender;
    TArgs args;
    bool enabled;

    // construction

    NotifyAsyncParams(
        const void* pSend,
        const TArgs& a
        );
};

Detailed Documentation

Construction

NotifyAsyncParams(
    const void* pSend,
    const TArgs& a
    )

Default constructor reduces the need for TArgs to have an empty constructor, only copy constructor is needed.