Package com.thinkaurelius.titan.diskstorage.locking.consistentkey

Examples of com.thinkaurelius.titan.diskstorage.locking.consistentkey.ConsistentKeyLockerSerializer


        protected Logger log;

        public Builder() {
            this.rid = new StaticByteBuffer(DistributedStoreManager.getRid(new BaseConfiguration()));
            this.times = TimeUtility.INSTANCE;
            this.serializer = new ConsistentKeyLockerSerializer();
            this.llm = null; // redundant, but it preserves this constructor's overall pattern
            this.lockState = new LockerState<S>();
            this.lockExpireNS = NANOSECONDS.convert(GraphDatabaseConfiguration.LOCK_EXPIRE_MS_DEFAULT, MILLISECONDS);
            this.log = LoggerFactory.getLogger(AbstractLocker.class);
        }
View Full Code Here

TOP

Related Classes of com.thinkaurelius.titan.diskstorage.locking.consistentkey.ConsistentKeyLockerSerializer

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.