I would like to call some Java code when a node of a certain type is added, updated or deleted in Neo4j. How can I do this?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Look into using TransactionEventHandler. You need to implement the interface, and then you register your event handler like this:

graphdb.registerTransactionEventHandler( myHandler );

HTH

link|improve this answer
feedback

Can you create your own Rule function?

http://neo4j.rubyforge.org/guides/rules_and_functions.html#creating-your-own-rule-function

link|improve this answer
I read that but I couldn't really figure out how this worked. Is a "rule" the same as a trigger then? – Zubair Apr 15 '11 at 19:01
No, but "rule function" seem to be it. – FractalizeR Apr 15 '11 at 19:15
This seems to be a Ruby API. Can it be done from Java? – Zubair Apr 15 '11 at 19:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.