remove request events from core listener
[jSite2.git] / src / net / pterodactylus / jsite / core / CoreListener.java
index d5d8cdc..e2d4946 100644 (file)
@@ -19,6 +19,8 @@
 
 package net.pterodactylus.jsite.core;
 
+import net.pterodactylus.jsite.project.Project;
+
 /**
  * Interface definition for user interfaces.
  * 
@@ -184,31 +186,58 @@ public interface CoreListener {
        public void nodeDisconnected(Node node, Throwable throwable);
 
        //
-       // request stuff
+       // project insertion stuff
        //
 
        /**
-        * Notifies a listener that a request was added to a node.
+        * Notifies a listener that a project insert started.
+        * 
+        * @param project
+        *            The project that is now inserting
+        */
+       public void projectInsertStarted(Project project);
+
+       /**
+        * Notifies a listener that a project insert made progress.
         * 
-        * @param request
-        *            The request that was added
+        * @param project
+        *            The project that made progress
+        * @param totalBlocks
+        *            The number of total blocks
+        * @param requiredBlocks
+        *            The number of required blocks
+        * @param successfulBlocks
+        *            The number of successfully inserted blocks
+        * @param failedBlocks
+        *            The number of blocks that could not be inserted
+        * @param fatallyFailedBlocks
+        *            The number of blocks that can not be inserted even with
+        *            retries
+        * @param finalizedTotal
+        *            <code>true</code> if the number of total blocks is already
+        *            finalized, <code>false</code> otherwise
         */
-       public void requestAdded(Request request);
+       public void projectInsertProgressed(Project project, int totalBlocks, int requiredBlocks, int successfulBlocks, int failedBlocks, int fatallyFailedBlocks, boolean finalizedTotal);
 
        /**
-        * Notifies a listener that a request made some progress.
+        * Notifies a listener that a project insert has generated a URI.
         * 
-        * @param request
-        *            The request that made the progress
+        * @param project
+        *            The project that generated a URI
+        * @param uri
+        *            The URI that was generated
         */
-       public void requestProgressed(Request request);
+       public void projectInsertGeneratedURI(Project project, String uri);
 
        /**
-        * Notifies a listener that a request was removed.
+        * Notifies a listener that a project insert has finished.
         * 
-        * @param request
-        *            The request that was removed
+        * @param project
+        *            The project that has finished
+        * @param success
+        *            <code>true</code> if the project was inserted successfully,
+        *            <code>false</code> otherwise
         */
-       public void requestRemoved(Request request);
+       public void projectInsertFinished(Project project, boolean success);
 
 }