You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/TestPipeLine/Watcher/Program.cs

27 lines
771 B

5 years ago
using ZeroLevel;
namespace Watcher
{
static class Program
{
static void Main(string[] args)
{
IConfiguration conf = Configuration.Create();
conf.Append("ServiceName", "Watcher");
conf.Append("ServiceKey", "test.watcher");
conf.Append("ServiceType", "System");
conf.Append("ServiceGroup", "Test");
conf.Append("Version", "1.0.0.1");
conf.Append("discovery", "127.0.0.1:5012");
Configuration.Save(conf);
5 years ago
Bootstrap.Startup<WatcherService>(args)
.UseDiscovery()
.Run()
.WaitWhileStatus(ZeroServiceStatus.Running)
.Stop();
Bootstrap.Shutdown();
}
}
}

Powered by TurnKey Linux.