更新NewLife.Agent,使用命令处理器
Andy Wu authored at 2024-05-21 09:18:24
1.30 KiB
Stardust
using NewLife.Agent.Command;
using NewLife.Agent;
using NewLife;
using NewLife.Serialization;

namespace StarAgent.CommandHandler
{
    public class UseMicroService : BaseCommandHandler
    {
        public UseMicroService(ServiceBase service) : base(service)
        {
            Cmd = "-UseMicroService";
            Description = "测试微服务";
            ShortcutKey = 'w';
        }

        private String _lastService;

        public override void Process(String[] args)
        {
            var service = (MyService)Service;
            if (_lastService.IsNullOrEmpty())
                Console.WriteLine("请输入要测试的微服务名称:");
            else
                Console.WriteLine("请输入要测试的微服务名称({0}):", _lastService);

            var serviceName = Console.ReadLine();
            if (serviceName.IsNullOrEmpty()) serviceName = _lastService;
            if (serviceName.IsNullOrEmpty()) return;

            _lastService = serviceName;

            service.StartFactory();

            var models = service._factory.Service.ResolveAsync(serviceName).Result;
            //if (models == null) models = _factory.Dust.ResolveAsync(new ConsumeServiceInfo { ServiceName = serviceName }).Result;

            Console.WriteLine(models.ToJson(true));
        }
    }
}