Fix missing 'since' doc for Future and Promise
authorMaciej Piechotka <uzytkownik2@gmail.com>
Sat, 6 Jul 2013 17:54:27 +0000 (19:54 +0200)
committerMaciej Piechotka <uzytkownik2@gmail.com>
Sat, 6 Jul 2013 17:54:27 +0000 (19:54 +0200)
gee/future.vala
gee/promise.vala
gee/task.vala

index 841f085..a08450a 100644 (file)
@@ -32,6 +32,7 @@ using GLib;
  * @see Lazy
  * @see task
  * @see async_task
+ * @since 0.11.0
  *
  * Note: Statement that call does not block does not mean that it is lock-free.
  *   Internally the implementation is allowed to take mutex but it should guarantee
index 806e7d8..61e5754 100644 (file)
@@ -28,6 +28,10 @@ using GLib;
  *
  * Typically the producer will create promise and return {@link future} while
  * keeping the promise to itself. Then when value is ready it can call {@link set_value}.
+ *
+ * @see Future
+ * @see task
+ * @since 0.11.0
  */
 public class Gee.Promise<G> {
        /**
index bbcd769..6a55afc 100644 (file)
@@ -30,6 +30,7 @@ namespace Gee {
         * @params task Task to be executed
         * @returns Future value returned by task
         * @see async_task
+        * @since 0.11.0
         *
         * Note: There is limited number of threads unless environment variable
         *   ``GEE_NUM_THREADS`` is set to -1. It is not adviced to call I/O or
@@ -50,6 +51,7 @@ namespace Gee {
         * one of threads from pool will execute the task.
         *
         * @see task
+        * @since 0.11.0
         *
         * Note: There is limited number of threads unless environment variable
         *   ``GEE_NUM_THREADS`` is set to -1. It is not adviced to call I/O or