Return-Path: X-Original-To: apmail-zest-commits-archive@minotaur.apache.org Delivered-To: apmail-zest-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C5A1218298 for ; Sun, 2 Aug 2015 08:39:47 +0000 (UTC) Received: (qmail 78134 invoked by uid 500); 2 Aug 2015 08:39:47 -0000 Delivered-To: apmail-zest-commits-archive@zest.apache.org Received: (qmail 78112 invoked by uid 500); 2 Aug 2015 08:39:47 -0000 Mailing-List: contact commits-help@zest.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zest.apache.org Delivered-To: mailing list commits@zest.apache.org Received: (qmail 78102 invoked by uid 99); 2 Aug 2015 08:39:47 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Aug 2015 08:39:47 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 98FDADFC63; Sun, 2 Aug 2015 08:39:47 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: niclas@apache.org To: commits@zest.apache.org Date: Sun, 02 Aug 2015 08:39:47 -0000 Message-Id: <077b92beb88b4bdba32ff92c04098d6c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] zest-java git commit: Java8 is very picky about the javadoc format. Repository: zest-java Updated Branches: refs/heads/develop c5075b003 -> 274ae43a0 Java8 is very picky about the javadoc format. Project: http://git-wip-us.apache.org/repos/asf/zest-java/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-java/commit/050e725f Tree: http://git-wip-us.apache.org/repos/asf/zest-java/tree/050e725f Diff: http://git-wip-us.apache.org/repos/asf/zest-java/diff/050e725f Branch: refs/heads/develop Commit: 050e725fd54b0c414ef812ca60a414e20a089f0e Parents: 11a63a3 Author: Niclas Hedhman Authored: Sun Aug 2 16:39:15 2015 +0800 Committer: Niclas Hedhman Committed: Sun Aug 2 16:39:15 2015 +0800 ---------------------------------------------------------------------- .../org/apache/zest/api/unitofwork/concern/UnitOfWorkRetry.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-java/blob/050e725f/core/api/src/main/java/org/apache/zest/api/unitofwork/concern/UnitOfWorkRetry.java ---------------------------------------------------------------------- diff --git a/core/api/src/main/java/org/apache/zest/api/unitofwork/concern/UnitOfWorkRetry.java b/core/api/src/main/java/org/apache/zest/api/unitofwork/concern/UnitOfWorkRetry.java index 7334404..e7ad6fb 100644 --- a/core/api/src/main/java/org/apache/zest/api/unitofwork/concern/UnitOfWorkRetry.java +++ b/core/api/src/main/java/org/apache/zest/api/unitofwork/concern/UnitOfWorkRetry.java @@ -68,9 +68,10 @@ public @interface UnitOfWorkRetry * * where retry will be 0 after first UnitOfWork had a {@link ConcurrentEntityModificationException} and is 1 after * the first retry and so forth. - *

+ *

* So, with the {@code retries=4, initialDelay=5, delayFactor=20} the 3 delays between the UnitOfWorks will be * {@code 5ms, 25ms, 45ms} + *

* * @return The number of milliseconds per retry, except the first one, that should be added to the delay between * tries.