//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: protected void process(org.neo4j.kernel.impl.store.record.NodeRecord[] batch, org.neo4j.unsafe.impl.batchimport.staging.BatchSender sender) throws Throwable
        protected internal override void Process(NodeRecord[] batch, BatchSender sender)
        {
            foreach (NodeRecord node in batch)
            {
                if (node.InUse())
                {
                    _writer.write(labelChanges(node.Id, EMPTY_LONG_ARRAY, get(node, _nodeStore)));
                }
            }
            sender.Send(batch);
        }
Beispiel #2
0
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#:
//ORIGINAL LINE: public boolean visit(org.neo4j.kernel.api.labelscan.NodeLabelUpdate update) throws java.io.IOException
        public override bool Visit(NodeLabelUpdate update)
        {
            _writer.write(update);
            _count++;
            return(false);
        }