Logo

Programming-Idioms

History of Idiom 185 > diff from v19 to v20

Edit summary for version 20 by chosenHosen:
New Csharp implementation by user [chosenHosen]

Version 19

2019-09-27, 07:54:09

Version 20

2019-09-27, 10:36:55

Idiom #185 Execute function in 30 seconds

Schedule the execution of f(42) in 30 seconds.

Idiom #185 Execute function in 30 seconds

Schedule the execution of f(42) in 30 seconds.

Extra Keywords
future
Extra Keywords
future
Imports
using System;
using System.Threading.Tasks;
Code
Task.Delay(TimeSpan.FromSeconds(30))
    .ContinueWith(_ => f(42));