tree: b1c38eb2165248e4018819e6c8970f157fbb6ddd [path history] [tgz]
  1. Program.cs
  2. README.md
  3. startserver.ps1
  4. stopserver.ps1
examples/dotnet/transaction/README.md

transaction example

This is a very simple example showing how to use TransactionManager. This example shows how to begin a transaction, commit a transaction, and rollback a transaction while showing exception handling. We commit two keys and rollback adding a third key and destroying an existing key while showing how to handle exceptions.

Prerequisites

  • An installation of Apache Geode.
  • Apache Geode Native, built and installed.
  • Apache Geode Native examples, built and installed.

Running

  1. From a command shell, set the current directory to the transaction directory in your example workspace.

    $ cd workspace/examples/build/dotnet/transaction
    
  2. Run the startserver.ps1 script to start the Geode cluster with authentication and create a region.

    For Windows cmd:

    $ powershell.exe -File startserver.ps1
    

    For Windows Powershell:

    $ startserver.ps1
    
  3. Execute dotnet-transaction.exe, expect the following output:

    Created cache
    Created region 'exampleRegion'
    Rolled back transaction - retrying(4)
    Rolled back transaction - retrying(3)
    Rolled back transaction - retrying(2)
    Committed transaction - exiting
    
  4. Run the stopserver.ps1 script to gracefully shutdown the Geode cluster.

    For Windows cmd:

    $ powershell.exe -File stopserver.ps1
    

    For Windows Powershell:

    $ stopserver.ps1