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 2020/01/06 16:02:42 UTC

[ignite] branch ignite-2.8 updated (342f877 -> 38fa20b)

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

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


    from 342f877  IGNITE-12458 Rename Affinity Awareness to Partition Awareness
     add 38fa20b  IGNITE-12471 .NET Thin Client: Fix WithExpiryPolicy crash

No new revisions were added by this update.

Summary of changes:
 .../Client/Cache/CreateCacheTest.cs                |   4 +-
 .../Client/ClientConnectionTest.cs                 |  23 ++
 .../Client/ClientProtocolCompatibilityTest.cs      |   8 +-
 .../Client/ClientReconnectCompatibilityTest.cs     |   2 +-
 .../Client/ClientServerCompatibilityTest.cs        | 164 +++++++++++++--
 .../dotnet/Apache.Ignite.Core.Tests/JavaServer.cs  |  53 +++--
 .../Apache.Ignite.Core.Tests/JavaServer/pom.xml    |   2 +-
 .../JavaServer/src/main/java/Runner.java           |  20 +-
 .../Apache.Ignite.Core.Tests/ProcessExtensions.cs  |   1 +
 .../Apache.Ignite.Core/Apache.Ignite.Core.csproj   |   5 +-
 .../Client/IgniteClientConfiguration.cs            |   4 +-
 .../Impl/Binary/BinaryProcessorClient.cs           |  31 ++-
 .../Impl/Client/Cache/CacheClient.cs               | 232 ++++++++++-----------
 .../Client/Cache/Query/ClientQueryCursorBase.cs    |   5 +-
 .../Impl/Client/ClientContextBase.cs               |  79 +++++++
 .../Impl/Client/ClientFailoverSocket.cs            |  59 +++---
 .../{IClientSocket.cs => ClientRequestContext.cs}  |  51 +++--
 .../ClientResponseContext.cs}                      |  35 ++--
 .../Apache.Ignite.Core/Impl/Client/ClientSocket.cs |  62 +++---
 .../Apache.Ignite.Core/Impl/Client/ClientUtils.cs  |  58 ++++++
 .../Impl/Client/Cluster/ClientCluster.cs           |  59 ++----
 .../Apache.Ignite.Core/Impl/Client/IgniteClient.cs |  41 +---
 modules/platforms/dotnet/DEVNOTES.txt              |   3 +-
 modules/platforms/dotnet/build.ps1                 |   2 +-
 modules/platforms/dotnet/release/Program.cs        |  11 +-
 25 files changed, 662 insertions(+), 352 deletions(-)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/ClientContextBase.cs
 rename modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/{IClientSocket.cs => ClientRequestContext.cs} (50%)
 copy modules/platforms/dotnet/Apache.Ignite.Core/Impl/{Binary/OptimizedMarshallerObject.cs => Client/ClientResponseContext.cs} (55%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/ClientUtils.cs