Beispiel #1
0
 public TransformationServices(IHystrixCommandFactory hystrixCommandFactory)
 {
     hystrixCommand = hystrixCommandFactory.GetHystrixCommand("TestGroup", "TestCommand");
 }
Beispiel #2
0
 public HelloController(IHystrixCommandFactory hystrixCommandFactory)
 {
     hystrixCommand = hystrixCommandFactory.GetHystrixCommand("TestGroup", "TestCommand");
 }
Beispiel #3
0
 public HystrixController(IHystrixCommandFactory hystrixCommandFactory, IHttpClientFactory httpClientFactory)
 {
     this.hystrixCommand    = hystrixCommandFactory.GetHystrixCommand("GroupKey", "CommandKey");
     this.httpClientFactory = httpClientFactory;
 }
Beispiel #4
0
 public JsonServices(IHystrixCommandFactory hystrixCommandFactory)
 {
     hystrixCommand = hystrixCommandFactory.GetHystrixCommand("JsonGroup", "JsonCommand");
 }
Beispiel #5
0
 public XmlServices(IHystrixCommandFactory hystrixCommandFactory)
 {
     hystrixCommand = hystrixCommandFactory.GetHystrixCommand("XmlGroup", "XmlCommand");
 }