Package org.makersoft.shards

Examples of org.makersoft.shards.ShardImpl


      Map<SqlSessionFactory, Set<ShardId>> sqlSessionFactoryShardIdMap,
      ShardIdResolver shardIdResolver) {
    List<Shard> list = Lists.newArrayList();
    for (Map.Entry<SqlSessionFactory, Set<ShardId>> entry : sqlSessionFactoryShardIdMap
        .entrySet()) {
      Shard shard = new ShardImpl(entry.getValue(), entry.getKey());
      list.add(shard);

    }

    return list;
View Full Code Here

TOP

Related Classes of org.makersoft.shards.ShardImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.