]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/request/AsyncMultiRead.java
Merge "Multiple reader thread support for db client"
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / request / AsyncMultiRead.java
index 67edc79638fe144d19373337335ea5dd4d4be024..a8e2f2b61d316e747a84fed61e6da7a54c1723bf 100644 (file)
@@ -1,80 +1,80 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.db.request;\r
-\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.Session;\r
-import org.simantics.db.exception.CancelTransactionException;\r
-import org.simantics.db.procedure.AsyncMultiProcedure;\r
-\r
-/**\r
- * TODO: fix this documentation, it is completely out-of-date!\r
- * \r
- * The <code>GraphRequest</code> interface is used to create transaction\r
- * requests to Simantics database implementations. Both read and write\r
- * transaction requests use the same interface.\r
- * \r
- * <p>\r
- * The actual work carried out by the implemented request should be done in the\r
- * <code>perform</code> method. It receives a <code>Graph</code> instance as\r
- * the only argument which is the interface for actually reading and writing the\r
- * graph data model.\r
- * \r
- * <p>\r
- * Transaction requests can be made to the database by creating your own\r
- * <code>GraphRequest</code> instance and putting it in the request queue of\r
- * the database session through the {@link Session} interface. The database\r
- * session is responsible for executing the queued requests in a thread of its\r
- * choice, or possibly/preferably multiple threads. The database session can\r
- * allow multiple read-only requests to occur simultaneously, but read-write\r
- * requests require exclusive database access. In other words only one\r
- * read-write request can be in execution simultaneously.\r
- * \r
- * <p>\r
- * This interface also has two callbacks - <code>handleException</code> for\r
- * allowing handling any exceptions thrown by <code>perform</code> and\r
- * <code>requestCompleted</code> for performing actions after a request has\r
- * been successfully completed.\r
- * \r
- * @author Tuukka Lehtonen\r
- * @see AsyncReadGraph\r
- * @see AsyncMultiProcedure\r
- * @see Session\r
- */\r
-public interface AsyncMultiRead<Result> extends Request {\r
-\r
-    /**\r
-     * When a <code>GraphRequest</code> is serviced by the database session\r
-     * the method <code>perform</code> is invoked.\r
-     * \r
-     * <p>\r
-     * Perform receives an object instance implementing the <code>AsyncReadGraph</code>\r
-     * interface which provides the only way to read/write the graph data model.\r
-     * The Graph instance must only be valid during the execution of the\r
-     * <code>perform</code> method and therefore should not be stored for use\r
-     * outside of its execution.\r
-     * \r
-     * <p>\r
-     * The general contract of the method <code>perform</code> is that it may\r
-     * take any action whatsoever which involves reading or writing the data\r
-     * model through the received Graph instance.\r
-     * \r
-     * @param g an interface for reading and writing the data model\r
-     * @return the result status of the request which affects how the\r
-     *         transaction proceeds, see GraphRequestStatus for more information\r
-     * @throws Exception when anything goes wrong inside the request thread\r
-     * @throws CancelTransactionException to indicate that the request needs to\r
-     *         be cancelled and any changes rolled back\r
-     */\r
-    void perform(AsyncReadGraph graph, AsyncMultiProcedure<Result> callback);\r
-    \r
- }\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Association for Decentralized Information Management
+ * in Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.db.request;
+
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.Session;
+import org.simantics.db.exception.CancelTransactionException;
+import org.simantics.db.procedure.AsyncMultiProcedure;
+
+/**
+ * TODO: fix this documentation, it is completely out-of-date!
+ * 
+ * The <code>GraphRequest</code> interface is used to create transaction
+ * requests to Simantics database implementations. Both read and write
+ * transaction requests use the same interface.
+ * 
+ * <p>
+ * The actual work carried out by the implemented request should be done in the
+ * <code>perform</code> method. It receives a <code>Graph</code> instance as
+ * the only argument which is the interface for actually reading and writing the
+ * graph data model.
+ * 
+ * <p>
+ * Transaction requests can be made to the database by creating your own
+ * <code>GraphRequest</code> instance and putting it in the request queue of
+ * the database session through the {@link Session} interface. The database
+ * session is responsible for executing the queued requests in a thread of its
+ * choice, or possibly/preferably multiple threads. The database session can
+ * allow multiple read-only requests to occur simultaneously, but read-write
+ * requests require exclusive database access. In other words only one
+ * read-write request can be in execution simultaneously.
+ * 
+ * <p>
+ * This interface also has two callbacks - <code>handleException</code> for
+ * allowing handling any exceptions thrown by <code>perform</code> and
+ * <code>requestCompleted</code> for performing actions after a request has
+ * been successfully completed.
+ * 
+ * @author Tuukka Lehtonen
+ * @see AsyncReadGraph
+ * @see AsyncMultiProcedure
+ * @see Session
+ */
+public interface AsyncMultiRead<Result> {
+
+    /**
+     * When a <code>GraphRequest</code> is serviced by the database session
+     * the method <code>perform</code> is invoked.
+     * 
+     * <p>
+     * Perform receives an object instance implementing the <code>AsyncReadGraph</code>
+     * interface which provides the only way to read/write the graph data model.
+     * The Graph instance must only be valid during the execution of the
+     * <code>perform</code> method and therefore should not be stored for use
+     * outside of its execution.
+     * 
+     * <p>
+     * The general contract of the method <code>perform</code> is that it may
+     * take any action whatsoever which involves reading or writing the data
+     * model through the received Graph instance.
+     * 
+     * @param g an interface for reading and writing the data model
+     * @return the result status of the request which affects how the
+     *         transaction proceeds, see GraphRequestStatus for more information
+     * @throws Exception when anything goes wrong inside the request thread
+     * @throws CancelTransactionException to indicate that the request needs to
+     *         be cancelled and any changes rolled back
+     */
+    void perform(AsyncReadGraph graph, AsyncMultiProcedure<Result> callback);
+    
+ }