IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
DelegateRunnable.cs
Go to the documentation of this file.
1using System;
2
3using java.lang;
4
6{
7 public class DelegateRunnable : Runnable
8 {
9
10 readonly Action onRun;
11
17 public DelegateRunnable(Action onRun)
18 {
19 this.onRun = onRun ?? throw new ArgumentNullException(nameof(onRun));
20 }
21
22 public void run()
23 {
24 onRun();
25 }
26
27 }
28
29}
DelegateRunnable(Action onRun)
Initializes a new instance.