Skip to content

Instantly share code, notes, and snippets.

@neuecc
Created March 16, 2022 09:48
Show Gist options
  • Select an option

  • Save neuecc/b7c2eb86a07014da9f7017a1fc240c49 to your computer and use it in GitHub Desktop.

Select an option

Save neuecc/b7c2eb86a07014da9f7017a1fc240c49 to your computer and use it in GitHub Desktop.
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