| 98 | /// Helper function to dispatch arbitrary function objects (see fun_ptr_proxy) |
| 99 | template <typename T> |
| 100 | DispatchStatus dispatch(T& ref) |
| 101 | { |
| 102 | return dispatch(fun_ptr_proxy<T>, &ref); |
| 103 | } |
| 104 | |
| 105 | /** |
| 106 | * Schedule the future dispatch of an event |