mirror of https://gitee.com/bigwinds/arangodb
Callbacks redesigning
This commit is contained in:
parent
407e06be32
commit
edec7047b9
|
@ -422,12 +422,12 @@ template<> bool Node::handle<SHIFT> (VPackSlice const& slice) {
|
|||
return true;
|
||||
}
|
||||
|
||||
template<> bool Node::handle<OBSERVE> () {
|
||||
|
||||
template<> bool Node::handle<OBSERVE> (VPackSlice const& slice) {
|
||||
return true;
|
||||
}
|
||||
|
||||
template<> bool Node::handle<UNOBSERVE> () {
|
||||
|
||||
template<> bool Node::handle<UNOBSERVE> (VPackSlice const& slice) {
|
||||
return true;
|
||||
}
|
||||
|
||||
}}
|
||||
|
|
|
@ -237,7 +237,7 @@ private:
|
|||
/// @brief My own agent
|
||||
Agent* _agent;
|
||||
|
||||
std::multimap
|
||||
std::multimap <std::string,std::string> _observers;
|
||||
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue