SaltAPI
1.1
An API for the HTTPd / Zia by Salty Studio.
|
#include <ProcessingList.hpp>
Public Member Functions | |
ProcessingList () | |
virtual | ~ProcessingList () |
bool | pop () |
pop first elem More... | |
EventFunctionList::iterator | begin () |
EventFunctionList::iterator | end () |
bool | push (EventFunction eventFunction) |
push back eventFunction More... | |
bool | pushBefore (EventFunction eventFunction, EventFunctionList::const_iterator ref) |
push eventFunction before iterator More... | |
bool | pushAfter (EventFunction eventFunction, EventFunctionList::const_iterator ref) |
push eventFunction after iterator More... | |
bool | next (Request *req, Response *res) |
pop current event and call next event More... | |
Definition at line 26 of file ProcessingList.hpp.
HTTP::ProcessingList::ProcessingList | ( | ) |
Definition at line 9 of file ProcessingList.cpp.
|
virtual |
Definition at line 13 of file ProcessingList.cpp.
EventFunctionList::iterator HTTP::ProcessingList::begin | ( | ) |
Definition at line 21 of file ProcessingList.cpp.
EventFunctionList::iterator HTTP::ProcessingList::end | ( | ) |
EventFunction *bottom()
Definition at line 25 of file ProcessingList.cpp.
pop current event and call next event
Definition at line 45 of file ProcessingList.cpp.
bool HTTP::ProcessingList::pop | ( | ) |
pop first elem
Definition at line 17 of file ProcessingList.cpp.
bool HTTP::ProcessingList::push | ( | EventFunction | eventFunction | ) |
push back eventFunction
eventFunction |
Definition at line 29 of file ProcessingList.cpp.
bool HTTP::ProcessingList::pushAfter | ( | EventFunction | eventFunction, |
EventFunctionList::const_iterator | ref | ||
) |
push eventFunction after iterator
eventFunction | |
ref |
Definition at line 40 of file ProcessingList.cpp.
bool HTTP::ProcessingList::pushBefore | ( | EventFunction | eventFunction, |
EventFunctionList::const_iterator | ref | ||
) |
push eventFunction before iterator
eventFunction | |
ref |
Definition at line 34 of file ProcessingList.cpp.