コード例 #1
0
        public void Update(IReadOnlyList <ProxyRoute> routes, IReadOnlyList <Cluster> clusters)
        {
            var oldConfig = _config;

            _config = new InMemoryConfig(routes, clusters);
            oldConfig.SignalChange();
        }
コード例 #2
0
 public InMemoryConfigProvider(IReadOnlyList <ProxyRoute> routes, IReadOnlyList <Cluster> clusters)
 {
     _config = new InMemoryConfig(routes, clusters);
 }