コード例 #1
0
 public FeatureWiseImpl(IFeatureWiseHttpClient client)
 {
     this.client = client;
 }
コード例 #2
0
 public RetryFailedRequestsDecorator(IFeatureWiseHttpClient realClient, int maxRetries)
 {
     this.realClient = realClient;
     this.maxRetries = maxRetries;
 }