For example Java has Timer for executing callback after given time (https://docs.oracle.com/javase/7/docs/api/java/util/Timer.html). I'm looking for implement simple scenario: invoke callback after given time. What is Nim equivalent of Timer or how to achieve similar effect?
I was really close. I thought async dispatch was only used to implement async IO. I did not read documentation carefully. My mistake. Sorry about silly question. Thank you for answer.