Package io.fathom.cloud.persist

Examples of io.fathom.cloud.persist.ZookeeperEntityManager


    }

    @Override
    public ZookeeperStateNode getRoot(String id) {
        ZookeeperEntityManager entityManager = entityManagerProvider.get();
        ZookeeperEntityTransaction transaction = entityManager.getTransaction();
        ZookeeperStateNode stateNode = transaction.findRoot(id);
        if (stateNode == null) {
            stateNode = new ZookeeperStateNode(null, id);
            transaction.putRoot(id, stateNode);
        }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.persist.ZookeeperEntityManager

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.