xtd 0.2.0
wait_callback.h
Go to the documentation of this file.
1 #pragma once
5 #include "../delegate.h"
6 #include <any>
7 
9 namespace xtd {
11  namespace threading {
28  using wait_callback = delegate<void(std::any)>;
29  }
30 }
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
delegate< void(std::any)> wait_callback
Represents a callback method to be executed by a thread pool thread.
Definition: wait_callback.h:28