Draft 1.0.0
See the version list below for details.
dotnet add package Draft --version 1.0.0
NuGet\Install-Package Draft -Version 1.0.0
<PackageReference Include="Draft" Version="1.0.0" />
paket add Draft --version 1.0.0
#r "nuget: Draft, 1.0.0"
// Install Draft as a Cake Addin #addin nuget:?package=Draft&version=1.0.0 // Install Draft as a Cake Tool #tool nuget:?package=Draft&version=1.0.0
An etcd client library for .Net
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.5
- Flurl (>= 1.0.8)
- Flurl.Http (>= 0.6.2)
- Newtonsoft.Json (>= 6.0.8)
- Rx-Core (>= 2.2.5)
- Rx-Interfaces (>= 2.2.5)
- Rx-Linq (>= 2.2.5)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.8 | 1,481 | 8/16/2018 |
1.0.7.1 | 1,004 | 8/9/2018 |
1.0.6.1 | 949 | 8/3/2018 |
1.0.5 | 1,095 | 7/26/2017 |
1.0.4 | 2,388 | 9/19/2016 |
1.0.3 | 1,069 | 8/24/2016 |
1.0.2 | 1,382 | 8/1/2016 |
1.0.1.1 | 1,897 | 3/24/2016 |
1.0.0 | 1,511 | 7/4/2015 |
0.2.1 | 1,175 | 5/7/2015 |
0.2.0 | 1,389 | 4/27/2015 |
0.1.1 | 1,190 | 3/18/2015 |
0.1.0 | 1,128 | 3/9/2015 |
New: `EndpointVerificationStrategy.ClusterMembers` - Similar verification as `EndpointVerificationStrategy.Any` but also adds verified cluster members to the `EndpointPool`.
New: `IEtcdClient.Statistics`
* `GetLeaderStatistics` - Retrieve the statistical information for leader of the etcd cluster
* `GetServerStatistics` - Retrieve the statistical information for the server (Which server depends on how the `EndpointPool` was built)
* `GetStoreStatistics` - Retrieve the etcd backing store statistics (For which server depends on how the `EndpointPool` was built)
Breaking Change: `IEtcdClient.Enqueue` has been moved to `IEtcdClient.Atomic.Enqueue`
Breaking Change: `IKeyDataValueConverter` overhaul
* `object ReadString(string value)` has been refactored into `T Read<T>(string value)`
* `string WriteString(object value)` has been refactored into `string Write<T>(T value)`
Change: The following have been annotated with `[Serializable]`
* `Endpoint`
* `EndpointPool`
* `EndpointRoutingStrategy`
* `EndpointVerificationStrategy`