class axl::sys::win::Event

#include <axl_sys_win_Event.h>

class Event: public axl::sys::win::WaitableHandle
{
public:
    // methods

    bool
    create(
        SECURITY_ATTRIBUTES* secAttr = NULL,
        bool isManualReset = false,
        bool isSignalled = false,
        const sl::StringRef_w& name = NULL
        );

    bool
    open(
        uint_t access = EVENT_ALL_ACCESS,
        bool doInheritHandle = false,
        const sl::StringRef_w& name = NULL
        );

    bool
    signal();

    bool
    reset();

    bool
    pulse();
};

Inherited Members

public:
    // typedefs

    typedef T H;

    // methods

    operator T() const;

    T
    operator->() const;

    const Handle&
    operator=(T h);

    bool
    isOpen() const;

    void
    close();

    void
    attach(T h);

    T
    detach();

    T*
    p();

    static
    T
    getInvalidHandle();

    WaitResult
    wait(
        uint_t timeout = -1,
        bool isAlertable = false
        );

    static
    WaitResult
    multiWait(
        HANDLE* waitArray,
        dword_t count,
        bool doWaitAll = false,
        uint_t timeout = -1,
        bool isAlertable = false
        );