template class Poco::Delegate<TObj, void, false>

Overview

#include <Delegate.h>

template <class TObj>
class Delegate<TObj, void, false>: public Poco::AbstractDelegate<void>
{
public:
    // typedefs

    typedef void(TObj::* NotifyMethod)();

    // construction

    Delegate(
        TObj* obj,
        NotifyMethod method
        );

    Delegate(const Delegate& delegate);

    // methods

    Delegate&
    operator=(const Delegate& delegate);

    virtual
    bool
    notify(const void* sender);

    bool
    equals(const AbstractDelegate<void>& other) const;

    virtual
    AbstractDelegate<void>*
    clone() const;

    virtual
    void
    disable();

protected:
    // fields

    TObj* _receiverObject;
    NotifyMethod _receiverMethod;
    Mutex _mutex;
};

Inherited Members

public:
    // methods

    virtual
    bool
    notify(const void* sender) = 0;

    virtual
    bool
    equals(const AbstractDelegate& other) const = 0;

    virtual
    AbstractDelegate*
    clone() const = 0;

    virtual
    void
    disable() = 0;

    virtual
    const AbstractDelegate*
    unwrap() const;

Detailed Documentation

Methods

virtual
bool
notify(const void* sender)

Invokes the delegate’s callback function.

Returns true if successful, or false if the delegate has been disabled or has expired.

virtual
AbstractDelegate<void>*
clone() const

Returns a deep copy of the AbstractDelegate.

virtual
void
disable()

Disables the delegate, which is done prior to removal.