Bitcoin ABC 0.30.3
P2P Digital Currency
|
RPC timer "driver". More...
#include <server.h>
Public Member Functions | |
virtual | ~RPCTimerInterface () |
virtual const char * | Name ()=0 |
Implementation name. More... | |
virtual RPCTimerBase * | NewTimer (std::function< void()> &func, int64_t millis)=0 |
Factory function for timers. More... | |
|
inlinevirtual |
|
pure virtual |
Implementation name.
Implemented in HTTPRPCTimerInterface, and QtRPCTimerInterface.
|
pure virtual |
Factory function for timers.
RPC will call the function to create a timer that will call func in millis milliseconds.
Implemented in HTTPRPCTimerInterface, and QtRPCTimerInterface.