Poco

template < class TArgs, class TDelegate >

class PriorityStrategy

Library: Foundation
Package: Events
Header: Poco/PriorityStrategy.h

Description

NotificationStrategy for PriorityEvent.

Delegates are kept in a std::vector<>, ordered by their priority.

Inheritance

Direct Base Classes: NotificationStrategy < TArgs, TDelegate >

All Base Classes: NotificationStrategy < TArgs, TDelegate >

Member Summary

Member Functions: add, clear, empty, notify, operator =, remove

Types

DelegatePtr

typedef SharedPtr < TDelegate > DelegatePtr;

Delegates

typedef std::vector < DelegatePtr > Delegates;

Iterator

typedef typename Delegates::iterator Iterator;

Constructors

PriorityStrategy inline

PriorityStrategy();

PriorityStrategy inline

PriorityStrategy(
    const PriorityStrategy & s
);

Destructor

~PriorityStrategy inline

~PriorityStrategy();

Member Functions

add inline

void add(
    const TDelegate & delegate
);

clear inline

void clear();

empty inline

bool empty() const;

notify inline

void notify(
    const void * sender,
    TArgs & arguments
);

operator = inline

PriorityStrategy & operator = (
    const PriorityStrategy & s
);

remove inline

void remove(
    const TDelegate & delegate
);

Variables

_delegates protected

Delegates _delegates;