MCPcopy Create free account
hub / github.com/TraderOracle/ATAS / Hooks

Method Hooks

ATASVolImb.cs:564–572  ·  view source on GitHub ↗
(string message, string wav)

Source from the content-addressed store, hash-verified

562 private SemaphoreSlim semaphore = new SemaphoreSlim(1, 1);
563
564 private async Task Hooks(string message, string wav)
565 {
566 var SoundFilePath = "";
567
568 return;
569 var sendWebhookTask = SendWebhook(message);
570 var Sound = PlaySoundAsync(SoundFilePath);
571 await Task.WhenAll(sendWebhookTask, Sound);
572 }
573
574 private async Task PlaySoundAsync(String SoundFilePath)
575 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected