prepare v1.1.4
[awesomized/libmemcached] / test / lib / Retry.hpp
index 04c0466da384be1ef1312b1e03d7cc2d38f7d121..65cbeb5e9462a07fb650d82a6a15170acc3d4019 100644 (file)
@@ -1,19 +1,33 @@
+/*
+    +--------------------------------------------------------------------+
+    | libmemcached - C/C++ Client Library for memcached                  |
+    +--------------------------------------------------------------------+
+    | Redistribution and use in source and binary forms, with or without |
+    | modification, are permitted under the terms of the BSD license.    |
+    | You should have received a copy of the license in a bundled file   |
+    | named LICENSE; in case you did not receive a copy you can review   |
+    | the terms online at: https://opensource.org/licenses/BSD-3-Clause  |
+    +--------------------------------------------------------------------+
+    | Copyright (c) 2006-2014 Brian Aker   https://datadifferential.com/ |
+    | Copyright (c) 2020 Michael Wallner   <mike@php.net>                |
+    +--------------------------------------------------------------------+
+*/
+
 #pragma once
 
 #include "common.hpp"
 
 class Retry {
 public:
-
   using predicate = function<bool()>;
 
   explicit Retry(predicate pred_, unsigned max_ = 10, chrono::milliseconds sleep_for_ = 100ms);
 
-  bool operator () ();
+  bool operator()();
 
 private:
+  const unsigned growth = 3;
   unsigned max;
   chrono::milliseconds sleep_for;
   predicate pred;
 };
-