forked from fanruan/finekit
Dylan.Liu
4 years ago
4 changed files with 35 additions and 6 deletions
@ -0,0 +1,16 @@
|
||||
package com.fanruan.api.cluster.state; |
||||
|
||||
import com.fr.collections.FineCollections; |
||||
import com.fr.collections.api.FineCollectionClient; |
||||
|
||||
/** |
||||
* @author Dylan.Liu |
||||
* @version 10.0 |
||||
* Created by Dylan.Liu on 2020/10/16 |
||||
*/ |
||||
public class FineCollectionsKit { |
||||
|
||||
public static FineCollectionClient getClient() { |
||||
return FineCollections.getInstance().getClient(); |
||||
} |
||||
} |
@ -0,0 +1,15 @@
|
||||
package com.fanruan.api.cluster.state; |
||||
|
||||
import com.fr.store.impl.StoreTemplate; |
||||
|
||||
/** |
||||
* @author Dylan.Liu |
||||
* @version 10.0 |
||||
* Created by Dylan.Liu on 2020/10/16 |
||||
*/ |
||||
public class StoreTemplateKit { |
||||
|
||||
public static void close(){ |
||||
StoreTemplate.getInstance().close(); |
||||
} |
||||
} |
Loading…
Reference in new issue