org.neo4j.cypher.result.RuntimeResult Maven / Gradle / Ivy
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.neo4j.cypher.result;
import java.util.Set;
import org.neo4j.cypher.internal.util.InternalNotification;
import org.neo4j.graphdb.QueryStatistics;
import org.neo4j.kernel.impl.query.QuerySubscription;
import org.neo4j.memory.HeapHighWaterMarkTracker;
/**
* The result API of a Cypher runtime
*/
public interface RuntimeResult extends AutoCloseable, QuerySubscription, HeapHighWaterMarkTracker {
enum ConsumptionState {
NOT_STARTED,
HAS_MORE,
EXHAUSTED
}
/**
* Returns true if at least one result row has been processed
*/
boolean hasServedRows();
/**
* Names of the returned fields of this result.
*/
String[] fieldNames();
/**
* Returns the consumption state of this result. This state changes when the result is served
*/
ConsumptionState consumptionState();
/**
* Get the {@link QueryStatistics} related to this query execution.
*/
QueryStatistics queryStatistics();
/**
* Get the {@link QueryProfile} of this query execution.
*/
QueryProfile queryProfile();
@Override
void close();
Set notifications();
Throwable getErrorOrNull();
/**
* Wait for a query execution that has ended or has been cancelled
* to finish cleanup. This is to be called before closing the query result.
* Depending on the runtime, cleaning up _could_ be an asynchronous operation.
* If cleaning up is not an asynchronous operation this is a no-op.
*/
default void awaitCleanup() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy