You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Volatile Updatesedit
var uris = Enumerable.Range(9200, NumberOfNodes).Select(p => new Uri("http://localhost:" + p)); var staticPool = new StaticConnectionPool(uris, randomize: false); Action callStatic = () => this.AssertCreateView(staticPool); callStatic.ShouldNotThrow();
var uris = Enumerable.Range(9200, NumberOfNodes).Select(p => new Uri("http://localhost:" + p)); var sniffingPool = new SniffingConnectionPool(uris, randomize: false); Action callSniffing = () => this.AssertCreateView(sniffingPool); callSniffing.ShouldNotThrow();