Package org.neo4j.batchimport.handlers

Examples of org.neo4j.batchimport.handlers.RelationshipIdHandler


    @Test
    public void testSelfRelationship() throws Exception {
        final NodeStruct struct = new NodeStruct(0);
        struct.addRel(0, true, 0);
        new RelationshipIdHandler().onEvent(struct,0,false);
        //new RelationshipWriteHandler(new RelationshipRecordWriter(neoStore.getRelationshipStore())).onEvent(struct,0,false);
    }
View Full Code Here

TOP

Related Classes of org.neo4j.batchimport.handlers.RelationshipIdHandler

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.