use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method txSuccess.
public void txSuccess() throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.txSuccess(err);
Util.throwServiceExceptionIfError(err);
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method beginTx.
public void beginTx() throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.beginTx(err);
Util.throwServiceExceptionIfError(err);
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method traverse.
public NodeIterator traverse(ParcelableTraversalDescription desc, long startNodeId) throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
INodeIterator result = mProxy.traverse(desc, startNodeId, err);
Util.throwServiceExceptionIfError(err);
return new NodeIterator(result);
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method getRelationshipTypes.
public List<String> getRelationshipTypes() throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
List<String> result = mProxy.getRelationshipTypes(err);
Util.throwServiceExceptionIfError(err);
return result;
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method updateRelationship.
public void updateRelationship(ParcelableRelationship relationship) throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.updateRelationship(relationship, err);
Util.throwServiceExceptionIfError(err);
}
Aggregations