Return-Path: X-Original-To: apmail-ignite-commits-archive@minotaur.apache.org Delivered-To: apmail-ignite-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 0ACE718BE3 for ; Tue, 13 Oct 2015 15:16:33 +0000 (UTC) Received: (qmail 48681 invoked by uid 500); 13 Oct 2015 15:16:33 -0000 Delivered-To: apmail-ignite-commits-archive@ignite.apache.org Received: (qmail 48595 invoked by uid 500); 13 Oct 2015 15:16:32 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 48579 invoked by uid 99); 13 Oct 2015 15:16:32 -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; Tue, 13 Oct 2015 15:16:32 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BF682E0944; Tue, 13 Oct 2015 15:16:32 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sboikov@apache.org To: commits@ignite.apache.org Date: Tue, 13 Oct 2015 15:16:46 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [16/21] ignite git commit: IgniteTransactions javadoc updated IgniteTransactions javadoc updated Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/075e7d06 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/075e7d06 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/075e7d06 Branch: refs/heads/ignite-1093-2 Commit: 075e7d06d55ba1c1249ce8b4d3b491aef7cbfd31 Parents: 1223525 Author: agura Authored: Mon Oct 12 12:32:35 2015 +0300 Committer: agura Committed: Mon Oct 12 12:33:12 2015 +0300 ---------------------------------------------------------------------- .../core/src/main/java/org/apache/ignite/IgniteTransactions.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/075e7d06/modules/core/src/main/java/org/apache/ignite/IgniteTransactions.java ---------------------------------------------------------------------- diff --git a/modules/core/src/main/java/org/apache/ignite/IgniteTransactions.java b/modules/core/src/main/java/org/apache/ignite/IgniteTransactions.java index bb88d4a..875b647 100644 --- a/modules/core/src/main/java/org/apache/ignite/IgniteTransactions.java +++ b/modules/core/src/main/java/org/apache/ignite/IgniteTransactions.java @@ -17,7 +17,6 @@ package org.apache.ignite; -import org.apache.ignite.cache.CacheAtomicityMode; import org.apache.ignite.cache.CacheMode; import org.apache.ignite.configuration.CacheConfiguration; import org.apache.ignite.transactions.Transaction; @@ -59,7 +58,6 @@ public interface IgniteTransactions { * * @return New transaction * @throws IllegalStateException If transaction is already started by this thread. - * @throws UnsupportedOperationException If cache is {@link CacheAtomicityMode#ATOMIC}. */ public Transaction txStart() throws IllegalStateException; @@ -70,7 +68,6 @@ public interface IgniteTransactions { * @param isolation Isolation. * @return New transaction. * @throws IllegalStateException If transaction is already started by this thread. - * @throws UnsupportedOperationException If cache is {@link CacheAtomicityMode#ATOMIC}. */ public Transaction txStart(TransactionConcurrency concurrency, TransactionIsolation isolation); @@ -84,7 +81,6 @@ public interface IgniteTransactions { * @param txSize Number of entries participating in transaction (may be approximate). * @return New transaction. * @throws IllegalStateException If transaction is already started by this thread. - * @throws UnsupportedOperationException If cache is {@link CacheAtomicityMode#ATOMIC}. */ public Transaction txStart(TransactionConcurrency concurrency, TransactionIsolation isolation, long timeout, int txSize);