Revision: 7920
http://sourceforge.net/p/bigdata/code/7920
Author: mrpersonick
Date: 2014-03-08 16:03:33 +0000 (Sat, 08 Mar 2014)
Log Message:
-----------
stubbed out tests and client wrappers for setting TM and running DB at once closure over the REST API. see ticket #840
Modified Paths:
--------------
branches/RDR/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/client/RemoteRepository.java
Modified: branches/RDR/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/client/RemoteRepository.java
===================================================================
--- branches/RDR/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/client/RemoteRepository.java 2014-03-08 16:00:40 UTC (rev 7919)
+++ branches/RDR/bigdata-sails/src/java/com/bigdata/rdf/sail/webapp/client/RemoteRepository.java 2014-03-08 16:03:33 UTC (rev 7920)
@@ -318,6 +318,9 @@
}
+ /**
+ * Set incremental truth maintenance to either true or false on the server.
+ */
public void setTruthMaintenance(final boolean tm) throws Exception {
final ConnectOptions opts = newConnectOptions();
@@ -327,7 +330,10 @@
checkResponseCode(doConnect(opts));
}
-
+
+ /**
+ * Compute database at once closure on the server and do a commit.
+ */
public long doClosure() throws Exception {
final ConnectOptions opts = newConnectOptions();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|