コード例 #1
0
        private static void Main(string[] args)
        {
            //using (TTransport transport = new TSocket("127.0.0.1", 8888))
            //using (TProtocol protocol = new TBinaryProtocol(transport))
            //using (var clientUser = new UserService.Client(protocol))
            //{
            //    transport.Open();
            //    User u = clientUser.Get(1);
            //    Console.WriteLine($"{u.Id},{u.Name}");
            //}

            using (TTransport transport = new TSocket("127.0.0.1", 8888))
                using (TProtocol protocol = new TBinaryProtocol(transport))
                    using (var protocolUserService = new TMultiplexedProtocol(protocol, "userService"))
                        using (var clientUser = new UserService.Client(protocolUserService))
                            using (var protocolCalcService = new TMultiplexedProtocol(protocol, "calcService"))
                                using (var clientCalc = new CalcService.Client(protocolCalcService))
                                {
                                    transport.Open();
                                    User u = clientUser.Get(1);
                                    Console.WriteLine($"{u.Id},{u.Name}");
                                    Console.WriteLine(clientCalc.Add(1, 2));
                                }

            Console.ReadKey();
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: huruiyi/MicroServices
 private static void SingleService1()
 {
     using (TTransport transport = new TSocket("localhost", 8800))
     {
         using (TProtocol protocol = new TBinaryProtocol(transport))
         {
             using (var clientUser = new UserService.Client(protocol))
             {
                 transport.Open();
                 User u = clientUser.Get(1); Console.WriteLine($"{u.Id},{u.Name}");
             }
         }
     }
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: huruiyi/MicroServices
 private static void Main(string[] args)
 {
     using (TTransport transport = new TSocket("localhost", 8800))
         using (TProtocol protocol = new TBinaryProtocol(transport))
             using (var protocolUserService = new TMultiplexedProtocol(protocol, "UserService"))
                 using (var clientUser = new UserService.Client(protocolUserService))
                     using (var protocolCalcService = new TMultiplexedProtocol(protocol, "CalcService"))
                         using (var clientCalc = new CalcService.Client(protocolCalcService))
                         {
                             transport.Open();
                             User u = clientUser.Get(1);
                             Console.WriteLine($"{u.Id},{u.Name}");
                             Console.WriteLine(clientCalc.Add(1, 2));
                         }
 }
コード例 #4
0
 static void Main(string[] args)
 {
     using (TTransport transport = new TSocket("localhost", 8800))
         using (TProtocol protocol = new TBinaryProtocol(transport))
             using (var clientUser = new UserService.Client(protocol))
             {
                 transport.Open();
                 User u = clientUser.Get(1);
                 Console.WriteLine($"{u.Id},{u.Name}");
                 var list = clientUser.GetAll();
                 list.ForEach(e =>
                 {
                     Console.WriteLine($"{e.Id},{e.Name}");
                 });
             }
 }