Created
March 16, 2022 09:48
-
-
Save neuecc/b7c2eb86a07014da9f7017a1fc240c49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using DFrame; | |
| DFrameApp.Run(7312, 7313); // WebUI:7312, WorkerListen:7313 | |
| public class SampleWorkload : Workload | |
| { | |
| public override async Task ExecuteAsync(WorkloadContext context) | |
| { | |
| Console.WriteLine($"Hello {context.WorkloadId}"); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment