|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RemoteResponse | |
---|---|
org.neo4j.remote | A tool for introspecting a running Neo4j Graph Database instance from a different process. |
Uses of RemoteResponse in org.neo4j.remote |
---|
Methods in org.neo4j.remote that return RemoteResponse | ||
---|---|---|
RemoteResponse<Boolean> |
RemoteResponse.ResponseBuilder.buildBooleanResponse(boolean value)
Create a response for a boolean request. |
|
|
RemoteResponse.ResponseBuilder.buildErrorResponse(Exception ex)
Create an error response for any request. |
|
RemoteResponse<IterableSpecification<NodeSpecification>> |
RemoteResponse.ResponseBuilder.buildFinalNodeResponse(long size,
NodeSpecification... nodes)
Create a final response for a node iterator request. |
|
RemoteResponse<IterableSpecification<RelationshipSpecification>> |
RemoteResponse.ResponseBuilder.buildFinalRelationshipResponse(RelationshipSpecification... relationships)
Create a final response for a relationship iterator request. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteResponse.ResponseBuilder.buildFinalStringResponse(String... strings)
Create a final response for a string iterator request. |
|
RemoteResponse<Integer> |
RemoteResponse.ResponseBuilder.buildIntegerResponse(int value)
Create a response for an integer request. |
|
RemoteResponse<NodeSpecification> |
RemoteResponse.ResponseBuilder.buildNodeResponse(long id)
Create a response for a node request. |
|
RemoteResponse<IterableSpecification<NodeSpecification>> |
RemoteResponse.ResponseBuilder.buildPartialNodeResponse(int moreToken,
long size,
NodeSpecification... nodes)
Create a partial response for a node iterator request. |
|
RemoteResponse<IterableSpecification<RelationshipSpecification>> |
RemoteResponse.ResponseBuilder.buildPartialRelationshipResponse(int moreToken,
RelationshipSpecification... relationships)
Create a partial response for a relationship iterator request. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteResponse.ResponseBuilder.buildPartialStringResponse(int moreToken,
String... strings)
Create a partial response for a string iterator request. |
|
RemoteResponse<Object> |
RemoteResponse.ResponseBuilder.buildPropertyResponse(Object value)
Create a response for a property request. |
|
RemoteResponse<RelationshipSpecification> |
RemoteResponse.ResponseBuilder.buildRelationshipResponse(long id,
String typeName,
long startNode,
long endNode)
Create a response for a relationship request. |
|
RemoteResponse<Void> |
RemoteResponse.ResponseBuilder.buildVoidResponse()
Create a response for a void request. |
|
RemoteResponse<Void> |
RemoteConnection.closeNodeIterator(int transactionId,
int requestToken)
Close an iterator over nodes. |
|
RemoteResponse<Void> |
RemoteConnection.closePropertyKeyIterator(int transactionId,
int requestToken)
Close an iterator over property keys. |
|
RemoteResponse<Void> |
RemoteConnection.closeRelationshipIterator(int transactionId,
int requestToken)
Close an iterator over relationships. |
|
RemoteResponse<Void> |
RemoteConnection.closeRelationshipTypeIterator(int transactionId,
int requestToken)
Close an iterator over relationship types. |
|
RemoteResponse<NodeSpecification> |
RemoteConnection.createNode(int transactionId)
Create a new node. |
|
RemoteResponse<RelationshipSpecification> |
RemoteConnection.createRelationship(int transactionId,
String relationshipTypeName,
long startNodeId,
long endNodeId)
Create a new relationship. |
|
RemoteResponse<Void> |
RemoteConnection.deleteNode(int transactionId,
long nodeId)
Delete a node. |
|
RemoteResponse<Void> |
RemoteConnection.deleteRelationship(int transactionId,
long relationshipId)
Delete a relationship. |
|
RemoteResponse<IterableSpecification<NodeSpecification>> |
RemoteConnection.getAllNodes(int transactionId)
Get all nodes. |
|
RemoteResponse<IterableSpecification<RelationshipSpecification>> |
RemoteConnection.getAllRelationships(int transactionId,
long nodeId,
Direction direction)
Get all relationships from a given node. |
|
RemoteResponse<IterableSpecification<NodeSpecification>> |
RemoteConnection.getIndexNodes(int transactionId,
int indexId,
String key,
Object value)
Get all nodes stored under a specific value in a specific index. |
|
RemoteResponse<Integer> |
RemoteConnection.getIndexServiceId(String indexName)
Get the id of an index service. |
|
RemoteResponse<IterableSpecification<NodeSpecification>> |
RemoteConnection.getMoreNodes(int transactionId,
int requestToken)
Get the next chunk of the lazy iterator of nodes. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteConnection.getMorePropertyKeys(int transactionId,
int requestToken)
Get the next chunk of the lazy iterator of property keys. |
|
RemoteResponse<IterableSpecification<RelationshipSpecification>> |
RemoteConnection.getMoreRelationships(int transactionId,
int requestToken)
Get the next chunk of the lazy iterator of relationships. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteConnection.getMoreRelationshipTypes(int transactionId,
int requestToken)
Get the next chunk of the lazy iterator of relationship types. |
|
RemoteResponse<Object> |
RemoteConnection.getNodeProperty(int transactionId,
long nodeId,
String key)
Get a property from a node. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteConnection.getNodePropertyKeys(int transactionId,
long nodeId)
Get the property keys for a node. |
|
RemoteResponse<NodeSpecification> |
RemoteConnection.getReferenceNode(int transactionId)
Get the reference node. |
|
RemoteResponse<RelationshipSpecification> |
RemoteConnection.getRelationshipById(int transactionId,
long relationshipId)
Get a relationship. |
|
RemoteResponse<Object> |
RemoteConnection.getRelationshipProperty(int transactionId,
long relationshipId,
String key)
Get a property from a relationship. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteConnection.getRelationshipPropertyKeys(int transactionId,
long relationshipId)
Get the property keys for a relationship. |
|
RemoteResponse<IterableSpecification<RelationshipSpecification>> |
RemoteConnection.getRelationships(int transactionId,
long nodeId,
Direction direction,
String[] relationshipTypeNames)
Get relationships from a given node. |
|
RemoteResponse<IterableSpecification<String>> |
RemoteConnection.getRelationshipTypes(int transactionId)
Get the relationship types that are registered with the server. |
|
RemoteResponse<Boolean> |
RemoteConnection.hasNodeProperty(int transactionId,
long nodeId,
String key)
Check if a node has a specific property. |
|
RemoteResponse<Boolean> |
RemoteConnection.hasNodeWithId(int transactionId,
long nodeId)
Check if a node with the specified id exists. |
|
RemoteResponse<Boolean> |
RemoteConnection.hasRelationshipProperty(int transactionId,
long relationshipId,
String key)
Check if a relationship has a specific property. |
|
RemoteResponse<Void> |
RemoteConnection.indexNode(int transactionId,
int indexId,
long nodeId,
String key,
Object value)
Store a node in an index. |
|
RemoteResponse<Void> |
RemoteConnection.removeIndexNode(int transactionId,
int indexId,
long nodeId,
String key,
Object value)
Remove a node from an index. |
|
RemoteResponse<Object> |
RemoteConnection.removeNodeProperty(int transactionId,
long nodeId,
String key)
Remove a property from a node. |
|
RemoteResponse<Object> |
RemoteConnection.removeRelationshipProperty(int transactionId,
long relationshipId,
String key)
Remove a property from a relationship. |
|
RemoteResponse<Object> |
RemoteConnection.setNodeProperty(int transactionId,
long nodeId,
String key,
Object value)
Set a property from a node. |
|
RemoteResponse<Object> |
RemoteConnection.setRelationshipProperty(int transactionId,
long relationshipId,
String key,
Object value)
Set a property from a relationship. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |