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