You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by db...@apache.org on 2018/06/19 17:02:37 UTC

[geode] branch develop updated: GEODE-5313: User Guide - consolidate transaction coding examples - broken link repairs

This is an automated email from the ASF dual-hosted git repository.

dbarnes pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new c9be10e  GEODE-5313: User Guide - consolidate transaction coding examples - broken link repairs
c9be10e is described below

commit c9be10e3077b4ff1958f44637183799afd00dbab
Author: Dave Barnes <db...@pivotal.io>
AuthorDate: Tue Jun 19 10:02:28 2018 -0700

    GEODE-5313: User Guide - consolidate transaction coding examples - broken link repairs
---
 geode-docs/developing/transactions/JTA_transactions.html.md.erb         | 2 +-
 geode-docs/developing/transactions/run_a_cache_transaction.html.md.erb  | 2 +-
 .../developing/transactions/working_with_transactions.html.md.erb       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/geode-docs/developing/transactions/JTA_transactions.html.md.erb b/geode-docs/developing/transactions/JTA_transactions.html.md.erb
index 5a621d5..412fd48 100644
--- a/geode-docs/developing/transactions/JTA_transactions.html.md.erb
+++ b/geode-docs/developing/transactions/JTA_transactions.html.md.erb
@@ -205,4 +205,4 @@ See [Setting Global Copy on Read](working_with_transactions.html#concept_vx2_gs4
     GFConnection gemfireConn = (GFConnection)cf.getConnection();
     ```
 
-See [JCA Resource Adapter Example](jca_adapter_example.html#concept_swv_z2p_wk) for an example of how to set up a transaction using the JCA Resource Adapter.
+See [JCA Resource Adapter Example](transaction_coding_examples.html#jca_adapter_example) for an example of how to set up a transaction using the JCA Resource Adapter.
diff --git a/geode-docs/developing/transactions/run_a_cache_transaction.html.md.erb b/geode-docs/developing/transactions/run_a_cache_transaction.html.md.erb
index 8f9ead6..9376513 100644
--- a/geode-docs/developing/transactions/run_a_cache_transaction.html.md.erb
+++ b/geode-docs/developing/transactions/run_a_cache_transaction.html.md.erb
@@ -74,7 +74,7 @@ This discussion centers on transactions on replicated and partitioned regions. I
 
     Follow these guidelines when writing the transaction:
     -   Start each transaction with a begin operation.
-    -   Consider whether you will want to suspend and resume the transaction. If some operations should not be part of the transaction, you may want to suspend the transaction while performing non-transactional operations. After the non-transactional operations are complete, you can resume the transaction. See [Basic Suspend and Resume Transaction Example](transaction_suspend_resume_example.html#concept_40AAC4332DCE4E4EB60C4BA141B729A4) for an example.
+    -   Consider whether you will want to suspend and resume the transaction. If some operations should not be part of the transaction, you may want to suspend the transaction while performing non-transactional operations. After the non-transactional operations are complete, you can resume the transaction. See [Basic Suspend and Resume Transaction Example](transaction_coding_examples.html#suspend_resume_example) for an example.
     -   If your transaction operates on a mix of partitioned and replicated regions, do the first region operation on an entry of the partitioned region. This sets the host for the entire transaction.
     -   If you did not configure copy-on-read to true, be sure all cache updates avoid in-place changes.
     -   Take into account the behavior of transactional and non-transactional operations. All transactional operations that are run after the begin and before the commit or rollback are included in the transaction.
diff --git a/geode-docs/developing/transactions/working_with_transactions.html.md.erb b/geode-docs/developing/transactions/working_with_transactions.html.md.erb
index 50a3686..781d2f0 100644
--- a/geode-docs/developing/transactions/working_with_transactions.html.md.erb
+++ b/geode-docs/developing/transactions/working_with_transactions.html.md.erb
@@ -94,7 +94,7 @@ or similar methods from within a transaction.
 
 See [Function Execution](../function_exec/chapter_overview.html) for more about functions.
 
-See [Transaction Embedded within a Function Example](transactional_function_example.html#concept_22331B3DBFAB4C0BA95EF103BFB71257) for an example.
+See [Transaction Embedded within a Function Example](transaction_coding_examples.html#transactional_function_example) for an example.
 
 ## <a id="concept_ty1_vnt_vk" class="no-quick-link"></a>Using Queries and Indexes with Transactions