You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2021/03/02 09:54:36 UTC

[ignite] branch master updated (04f832d -> 28eec4f)

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

ptupitsyn pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git.


    from 04f832d  IGNITE-14257 Add copy constructor to ClientCacheConfiguration class - Fixes #8838.
     add 28eec4f  IGNITE-14250 .NET: Fix race condition in Events example, test example output

No new revisions were added by this update.

Summary of changes:
 .../Apache.Ignite.Core.Tests.DotNetCore.csproj     |   4 +-
 .../Examples/ExamplePaths.cs                       |  11 +-
 .../Examples/ExamplesTestBase.cs                   | 113 +++++++++++++++++++++
 .../Examples/ExpectedOutput/AtomicLong.txt         |  24 +++++
 .../ExpectedOutput/AtomicLong_ExternalNode.txt     |  44 ++++++++
 .../Examples/ExpectedOutput/AtomicReference.txt    |   1 +
 .../Examples/ExpectedOutput/AtomicSequence.txt     |  23 +++++
 .../ExpectedOutput/AtomicSequence_ExternalNode.txt |  44 ++++++++
 .../Examples/ExpectedOutput/BinaryMode.txt         |  21 ++++
 .../Examples/ExpectedOutput/BinaryModeThin.txt     |  18 ++++
 .../Examples/ExpectedOutput/ClientReconnect.txt    |  18 ++++
 .../Examples/ExpectedOutput/DataStreamer.txt       |  51 ++++++++++
 .../Examples/ExpectedOutput/Ddl.txt                |   9 ++
 .../Examples/ExpectedOutput/DdlThin.txt            |  13 +++
 .../Examples/ExpectedOutput/Dml.txt                |  17 ++++
 .../Examples/ExpectedOutput/DmlThin.txt            |  17 ++++
 .../Examples/ExpectedOutput/EntryProcessor.txt     |  45 ++++++++
 .../Examples/ExpectedOutput/Events.txt             |  10 ++
 .../ExpectedOutput/Events_ExternalNode.txt         |  10 ++
 .../Examples/ExpectedOutput/Func.txt               |  15 +++
 .../Examples/ExpectedOutput/Lifecycle.txt          |  17 ++++
 .../Examples/ExpectedOutput/Linq.txt               |  32 ++++++
 .../Examples/ExpectedOutput/LinqThin.txt           |  32 ++++++
 .../Examples/ExpectedOutput/Messaging.txt          |  28 +++++
 .../Examples/ExpectedOutput/MultiTieredCache.txt   |  34 +++++++
 .../ExpectedOutput/OptimisticTransaction.txt       |   7 ++
 .../ExpectedOutput/OptimisticTransactionThin.txt   |   7 ++
 .../ExpectedOutput/PeerAssemblyLoading.txt         |   4 +
 .../Examples/ExpectedOutput/PutGet.txt             |  13 +++
 .../Examples/ExpectedOutput/PutGetThin.txt         |  13 +++
 .../Examples/ExpectedOutput/QueryContinuous.txt    |   6 ++
 .../ExpectedOutput/QueryContinuousThin.txt         |   6 ++
 .../Examples/ExpectedOutput/QueryFullText.txt      |   5 +
 .../Examples/ExpectedOutput/QueryScan.txt          |   5 +
 .../Examples/ExpectedOutput/QueryScanThin.txt      |   5 +
 .../Examples/ExpectedOutput/Services.txt           |   7 ++
 .../Examples/ExpectedOutput/ServicesThin.txt       |   3 +
 .../Examples/ExpectedOutput/Sql.txt                |  15 +++
 .../Examples/ExpectedOutput/SqlThin.txt            |  17 ++++
 .../Examples/ExpectedOutput/Store.txt              |  21 ++++
 .../Examples/ExpectedOutput/Task.txt               |  15 +++
 .../Examples/ExpectedOutput/Task_ExternalNode.txt  |  16 +++
 .../Examples/ExpectedOutput/Transaction.txt        |  26 +++++
 .../TransactionDeadlockDetection.txt               |  17 ++++
 .../Examples/ExpectedOutput/TransactionThin.txt    |  26 +++++
 .../Examples/ThickExamplesExternalNodeTest.cs      |   4 +-
 .../Examples/ThickExamplesTest.cs                  |   4 +-
 .../Examples/ThinExamplesTest.cs                   |  34 ++++++-
 .../Examples/ThinExamplesTwoServersTest.cs}        |  37 ++-----
 .../Thick/Cache/MultiTieredCache/Program.cs        |   8 +-
 .../dotnet/examples/Thick/Misc/Events/Program.cs   |  32 +++++-
 parent/pom.xml                                     |   1 +
 52 files changed, 966 insertions(+), 39 deletions(-)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExamplesTestBase.cs
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/AtomicLong.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/AtomicLong_ExternalNode.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/AtomicReference.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/AtomicSequence.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/AtomicSequence_ExternalNode.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/BinaryMode.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/BinaryModeThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/ClientReconnect.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/DataStreamer.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Ddl.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/DdlThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Dml.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/DmlThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/EntryProcessor.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Events.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Events_ExternalNode.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Func.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Lifecycle.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Linq.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/LinqThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Messaging.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/MultiTieredCache.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/OptimisticTransaction.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/OptimisticTransactionThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/PeerAssemblyLoading.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/PutGet.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/PutGetThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/QueryContinuous.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/QueryContinuousThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/QueryFullText.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/QueryScan.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/QueryScanThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Services.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/ServicesThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Sql.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/SqlThin.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Store.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Task.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Task_ExternalNode.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/Transaction.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/TransactionDeadlockDetection.txt
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Examples/ExpectedOutput/TransactionThin.txt
 rename modules/platforms/dotnet/{examples/Shared/Events/LocalEventListener.cs => Apache.Ignite.Core.Tests/Examples/ThinExamplesTwoServersTest.cs} (50%)