コード例 #1
0
 public void InitAlgos()
 {
     MethodItems = new ObservableCollection <ListBoxItem>();
     ILBAlgorithmFactory.GetAllAlgoRithms().ForEach((x) =>
     {
         AddToMethods(x);
     });
 }
コード例 #2
0
        public LoadBalancerModel()
        {
            algoFactory      = new ILBAlgorithmFactory();
            currentAlgorithm = null;

            InitLoadBalancer();
            InitServers();
            DoHealthCheck();
        }