Package org.apache.cayenne.access

Examples of org.apache.cayenne.access.NoSyncObjectStore


   
    public ObjectStore createObjectStore(DataRowStore dataRowCache) {
        boolean sync = runtimeProperties.getBoolean(SYNC_PROPERTY, true);
       
        return sync ? new ObjectStore(dataRowCache, retainStrategy.createObjectMap())
                : new NoSyncObjectStore(dataRowCache, retainStrategy.createObjectMap());
    }
View Full Code Here


   
    public ObjectStore createObjectStore(DataRowStore dataRowCache) {
        boolean sync = runtimeProperties.getBoolean(Constants.SERVER_CONTEXTS_SYNC_PROPERTY, true);
       
        return sync ? new ObjectStore(dataRowCache, retainStrategy.createObjectMap())
                : new NoSyncObjectStore(dataRowCache, retainStrategy.createObjectMap());
    }
View Full Code Here

TOP

Related Classes of org.apache.cayenne.access.NoSyncObjectStore

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.