java.lang.Object
org.neo4j.driver.internal.summary.InternalResultSummary
- All Implemented Interfaces:
ResultSummary
-
Constructor Summary
ConstructorDescriptionInternalResultSummary
(Query query, ServerInfo serverInfo, DatabaseInfo databaseInfo, QueryType queryType, SummaryCounters counters, Plan plan, ProfiledPlan profile, List<Notification> notifications, Set<GqlStatusObject> gqlStatusObjects, long resultAvailableAfter, long resultConsumedAfter) -
Method Summary
Modifier and TypeMethodDescriptioncounters()
database()
The basic information of the database where the result is obtained fromboolean
Returns a sequenced set of GQL-status objects resulting from the request execution.int
hashCode()
boolean
hasPlan()
boolean
A list of notifications that might arise when executing the query.plan()
This describes how the database will execute your query.profile()
This describes how the database did execute your query.query()
long
resultAvailableAfter
(TimeUnit unit) The time it took the server to make the result available for consumption.long
resultConsumedAfter
(TimeUnit unit) The time it took the server to consume the result.server()
The basic information of the server where the result is obtained fromtoString()
-
Constructor Details
-
InternalResultSummary
public InternalResultSummary(Query query, ServerInfo serverInfo, DatabaseInfo databaseInfo, QueryType queryType, SummaryCounters counters, Plan plan, ProfiledPlan profile, List<Notification> notifications, Set<GqlStatusObject> gqlStatusObjects, long resultAvailableAfter, long resultConsumedAfter)
-
-
Method Details
-
query
- Specified by:
query
in interfaceResultSummary
- Returns:
- query that has been executed
-
counters
- Specified by:
counters
in interfaceResultSummary
- Returns:
- counters for operations the query triggered
-
queryType
- Specified by:
queryType
in interfaceResultSummary
- Returns:
- type of query that has been executed
-
hasPlan
public boolean hasPlan()- Specified by:
hasPlan
in interfaceResultSummary
- Returns:
- true if the result contained a query plan, i.e. is the summary of a Cypher "PROFILE" or "EXPLAIN" query
-
hasProfile
public boolean hasProfile()- Specified by:
hasProfile
in interfaceResultSummary
- Returns:
- true if the result contained profiling information, i.e. is the summary of a Cypher "PROFILE" query
-
plan
Description copied from interface:ResultSummary
This describes how the database will execute your query.- Specified by:
plan
in interfaceResultSummary
- Returns:
- query plan for the executed query if available, otherwise null
-
profile
Description copied from interface:ResultSummary
This describes how the database did execute your query.If the query you executed
was profiled
, the query plan will contain detailed information about what each step of the plan did. That more in-depth version of the query plan becomes available here.- Specified by:
profile
in interfaceResultSummary
- Returns:
- profiled query plan for the executed query if available, otherwise null
-
notifications
Description copied from interface:ResultSummary
A list of notifications that might arise when executing the query. Notifications can be warnings about problematic queries or other valuable information that can be presented in a client.Unlike failures or errors, notifications do not affect the execution of a query.
Since
Notification
is a subtype ofGqlStatusObject
, the list of notifications is a subset of all GQL-status objects that are ofNotification
type. However, the order might be different.- Specified by:
notifications
in interfaceResultSummary
- Returns:
- a list of notifications produced while executing the query. The list will be empty if no notifications produced while executing the query.
- See Also:
-
gqlStatusObjects
Description copied from interface:ResultSummary
Returns a sequenced set of GQL-status objects resulting from the request execution.- Specified by:
gqlStatusObjects
in interfaceResultSummary
- Returns:
- the sequenced set of GQL-status objects
-
resultAvailableAfter
Description copied from interface:ResultSummary
The time it took the server to make the result available for consumption.- Specified by:
resultAvailableAfter
in interfaceResultSummary
- Parameters:
unit
- The unit of the duration.- Returns:
- The time it took for the server to have the result available in the provided time unit.
-
resultConsumedAfter
Description copied from interface:ResultSummary
The time it took the server to consume the result.- Specified by:
resultConsumedAfter
in interfaceResultSummary
- Parameters:
unit
- The unit of the duration.- Returns:
- The time it took for the server to consume the result in the provided time unit.
-
server
Description copied from interface:ResultSummary
The basic information of the server where the result is obtained from- Specified by:
server
in interfaceResultSummary
- Returns:
- basic information of the server where the result is obtained from
-
database
Description copied from interface:ResultSummary
The basic information of the database where the result is obtained from- Specified by:
database
in interfaceResultSummary
- Returns:
- the basic information of the database where the result is obtained from
-
equals
-
hashCode
public int hashCode() -
toString
-