Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Cancellable wait or find
#4
Added in v0.18. Thank you.

The type of the timeout parameter of wait functions now is Seconds instead of double. It allows to pass wait options and cancellation token.
 
Code:
Copy      Help
var cts = new CancellationTokenSource(2000);
try { wait.until(new Seconds(0) { Cancel = cts.Token }, () => false); }
catch (OperationCanceledException) { print.it("canceled"); }

Code:
Copy      Help
CancellationTokenSource cts = null;
int iTask = 0;

var b = new wpfBuilder("Window").WinSize(400);
b.R.AddButton("Start", _ => { cts?.Cancel(); cts = new(); Task.Run(_Task); });
b.R.AddButton("Cancel", _ => { cts?.Cancel(); });
b.R.AddOkCancel();
b.End();
b.Window.Closed += (_, _) => { cts?.Cancel(); };
if (!b.ShowDialog()) return;

void _Task() {
    using var osd = osdText.showTransparentText($"Waiting, task {++iTask}", -1, xy: new(y: .6f));
    try { wait.until(new Seconds(0) { Cancel = cts.Token }, () => false); }
    catch (OperationCanceledException) { print.it("canceled"); }
}


Messages In This Thread
Cancellable wait or find - by darkraise - 09-18-2023, 06:09 AM
RE: Cancellable wait or find - by Gintaras - 09-18-2023, 01:04 PM
RE: Cancellable wait or find - by darkraise - 09-23-2023, 03:13 AM
RE: Cancellable wait or find - by Gintaras - 10-10-2023, 05:46 AM
RE: Cancellable wait or find - by darkraise - 10-29-2023, 01:21 PM
RE: Cancellable wait or find - by Gintaras - 10-29-2023, 06:44 PM
RE: Cancellable wait or find - by darkraise - 10-29-2023, 10:11 PM

Forum Jump:


Users browsing this thread: 6 Guest(s)