Initial code import
[msb/apigateway.git] / apiroute / apiroute-service / src / main / java / org / openo / msb / wrapper / consul / cache / ServiceCache.java
diff --git a/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/ServiceCache.java b/apiroute/apiroute-service/src/main/java/org/openo/msb/wrapper/consul/cache/ServiceCache.java
new file mode 100644 (file)
index 0000000..80cdb7b
--- /dev/null
@@ -0,0 +1,50 @@
+/**\r
+* Copyright (C) 2016 ZTE, Inc. and others. All rights reserved. (ZTE)\r
+*\r
+* Licensed under the Apache License, Version 2.0 (the "License");\r
+* you may not use this file except in compliance with the License.\r
+* You may obtain a copy of the License at\r
+*\r
+* http://www.apache.org/licenses/LICENSE-2.0\r
+*\r
+* Unless required by applicable law or agreed to in writing, software\r
+* distributed under the License is distributed on an "AS IS" BASIS,\r
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+* See the License for the specific language governing permissions and\r
+* limitations under the License.\r
+*/\r
+\r
+package org.openo.msb.wrapper.consul.cache;\r
+\r
+import java.math.BigInteger;\r
+import java.util.List;\r
+import java.util.Map;\r
+\r
+import org.openo.msb.wrapper.consul.CatalogClient;\r
+import org.openo.msb.wrapper.consul.async.ConsulResponseCallback;\r
+\r
+public class ServiceCache  extends ConsulCache4Map<String, Map<String, List<String>>> {\r
+    private  ServiceCache( ConsulCache4Map.CallbackConsumer<Map<String, List<String>>> callbackConsumer) {\r
+                      super(callbackConsumer);\r
+                      // TODO Auto-generated constructor stub\r
+                  }\r
+                  \r
+                  \r
+                  public static ServiceCache newCache(\r
+                      final CatalogClient catalogClient,\r
+                      final int watchSeconds){\r
+                   \r
+                     \r
+                     final CallbackConsumer<Map<String, List<String>>> callbackConsumer = new CallbackConsumer<Map<String, List<String>>>() {\r
+                         @Override\r
+                         public void consume(BigInteger index, ConsulResponseCallback<Map<String, List<String>>> callback) {\r
+                             catalogClient.getService(watchParams(index, watchSeconds),callback);\r
+                         }\r
+                     };\r
+                     \r
+                      \r
+                     return new ServiceCache(callbackConsumer);\r
+                      \r
+                      \r
+                  }\r
+}\r