Package apoc.periodic

Class PeriodicExtended


  • public class PeriodicExtended
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      org.neo4j.graphdb.GraphDatabaseService db  
      org.neo4j.logging.Log log  
      apoc.Pools pools  
      org.neo4j.procedure.TerminationGuard terminationGuard  
      org.neo4j.graphdb.Transaction tx  
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.util.stream.Stream<apoc.periodic.BatchAndTotalResult> rock_n_roll​(java.lang.String cypherIterate, java.lang.String cypherAction, long batchSize)
      Deprecated.
      java.util.stream.Stream<apoc.periodic.LoopingBatchAndTotalResult> rock_n_roll_while​(java.lang.String cypherLoop, java.lang.String cypherIterate, java.lang.String cypherAction, long batchSize)
      Deprecated.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • db

        public org.neo4j.graphdb.GraphDatabaseService db
      • terminationGuard

        public org.neo4j.procedure.TerminationGuard terminationGuard
      • log

        public org.neo4j.logging.Log log
      • pools

        public apoc.Pools pools
      • tx

        public org.neo4j.graphdb.Transaction tx
    • Constructor Detail

      • PeriodicExtended

        public PeriodicExtended()
    • Method Detail

      • rock_n_roll_while

        @Deprecated
        public java.util.stream.Stream<apoc.periodic.LoopingBatchAndTotalResult> rock_n_roll_while​(java.lang.String cypherLoop,
                                                                                                   java.lang.String cypherIterate,
                                                                                                   java.lang.String cypherAction,
                                                                                                   long batchSize)
        Deprecated.
        as long as cypherLoop does not return 0, null, false, or the empty string as 'value' do: invoke cypherAction in batched transactions being feeded from cypherIteration running in main thread
        Parameters:
        cypherLoop -
        cypherIterate -
        cypherAction -
        batchSize -
      • rock_n_roll

        @Deprecated
        public java.util.stream.Stream<apoc.periodic.BatchAndTotalResult> rock_n_roll​(java.lang.String cypherIterate,
                                                                                      java.lang.String cypherAction,
                                                                                      long batchSize)
        Deprecated.