Beispiel #1
0
 internal Status(ConsulClient c)
 {
     _client = c;
 }
Beispiel #2
0
 internal Health(ConsulClient c)
 {
     _client = c;
 }
Beispiel #3
0
 internal ACL(ConsulClient c)
 {
     _client = c;
 }
Beispiel #4
0
 internal Event(ConsulClient c)
 {
     _client = c;
 }
Beispiel #5
0
 internal Catalog(ConsulClient c)
 {
     _client = c;
 }
Beispiel #6
0
 internal Agent(ConsulClient c)
 {
     _client       = c;
     _nodeNameLock = new AsyncLock();
 }
Beispiel #7
0
 public KV(ConsulClient c)
 {
     _client = c;
 }
Beispiel #8
0
 internal PreparedQuery(ConsulClient c)
 {
     _client = c;
 }
Beispiel #9
0
 internal Lock(ConsulClient c)
 {
     _client = c;
     _cts    = new CancellationTokenSource();
 }
Beispiel #10
0
 /// <summary>
 /// Operator can be used to perform low-level operator tasks for Consul.
 /// </summary>
 /// <param name="c"></param>
 internal Operator(ConsulClient c)
 {
     _client = c;
 }
Beispiel #11
0
 /// <summary>
 /// Snapshot can be used to query the /v1/snapshot endpoint to take snapshots of
 /// Consul's internal state and restore snapshots for disaster recovery.
 /// </summary>
 /// <param name="c"></param>
 internal Snapshot(ConsulClient c)
 {
     _client = c;
 }
Beispiel #12
0
 internal Semaphore(ConsulClient c)
 {
     _client = c;
     _cts    = new CancellationTokenSource();
 }
Beispiel #13
0
 internal Coordinate(ConsulClient c)
 {
     _client = c;
 }
Beispiel #14
0
 internal Session(ConsulClient c)
 {
     _client = c;
 }
Beispiel #15
0
 internal Raw(ConsulClient c)
 {
     _client = c;
 }