remove ambigous Cluster ctor
[awesomized/libmemcached] / test / lib / Cluster.hpp
index c99e1d377ceca6248f68ef72b10d96727f312e23..d2b93b9cd7a31806a51622768e236371b0a180f1 100644 (file)
@@ -20,8 +20,7 @@
 
 class Cluster {
 public:
-  explicit Cluster(Server serv, uint16_t cnt = 0);
-  explicit Cluster(vector<Server> servers);
+  explicit Cluster(Server serv, uint16_t cnt = 3);
   ~Cluster();
 
   Cluster(const Cluster &c) = delete;
@@ -42,7 +41,7 @@ public:
   const vector<Server> &getServers() const;
 
   bool start();
-  void stop();
+  void stop(bool graceful = false);
   bool isStopped();
   bool isListening();
   void wait();