Package org.neo4j.batchimport.collections

Examples of org.neo4j.batchimport.collections.ConcurrentLongReverseRelationshipMap


    // store reverse node-id to rel-id for future updates of relationship-records
    final ReverseRelationshipMap futureModeRelIdQueueOutgoing;
    final ReverseRelationshipMap futureModeRelIdQueueIncoming;

    public RelationshipIdHandler(int relsPerNode) {
        futureModeRelIdQueueOutgoing = new ConcurrentLongReverseRelationshipMap(relsPerNode);
        futureModeRelIdQueueIncoming = new ConcurrentLongReverseRelationshipMap(relsPerNode);
    }
View Full Code Here

TOP

Related Classes of org.neo4j.batchimport.collections.ConcurrentLongReverseRelationshipMap

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.