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/02/09 06:09:44 UTC

[ignite] branch master updated (a03313e -> 971b3e1)

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 a03313e  IGNITE-10073 .NET: Document how to exclude jar files from build output
     add 971b3e1  IGNITE-14103 .NET: Add thin client automatic binary configuration

No new revisions were added by this update.

Summary of changes:
 .../platform/client/ClientBitmaskFeature.java      |   7 +-
 .../platform/client/ClientMessageParser.java       |   7 +
 .../ClientBinaryConfigurationGetRequest.java       |  76 +++++
 ...a => ClientBinaryConfigurationGetResponse.java} |  28 +-
 ...va => PlatformCustomBinaryBasicNameMapper.java} |  16 +-
 ...er.java => PlatformCustomBinaryNameMapper.java} |  16 +-
 .../Properties/AssemblyInfo.cs                     |   1 -
 .../Apache.Ignite.Core.Tests.DotNetCore.csproj     |   6 +
 .../Apache.Ignite.Core.Tests.csproj                |   7 +
 .../Binary/BinaryConfigurationRetrievalTest.cs     | 341 +++++++++++++++++++++
 .../Client/ClientFeaturesTest.cs                   |  14 +-
 ...e-default.xml => binary-custom-name-mapper.xml} |  12 +-
 ...-default.xml => binary-custom-name-mapper2.xml} |  12 +-
 .../Services/ServicesTest.cs                       |  23 +-
 .../Apache.Ignite.Core/Apache.Ignite.Core.csproj   |   2 +
 .../Binary/BinaryConfigurationClientInternal.cs    |  68 ++++
 .../Binary/BinaryNameMapperMode.cs}                |  20 +-
 .../Impl/Client/ClientBitmaskFeature.cs            |   3 +-
 .../Impl/Client/ClientFailoverSocket.cs            |  96 +++++-
 .../Impl/Client/ClientFeatures.cs                  |  30 +-
 .../Apache.Ignite.Core/Impl/Client/ClientOp.cs     |   1 +
 .../Apache.Ignite.Core/Impl/Client/IgniteClient.cs |   2 +-
 22 files changed, 696 insertions(+), 92 deletions(-)
 create mode 100644 modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/binary/ClientBinaryConfigurationGetRequest.java
 copy modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/binary/{ClientBinaryTypeGetResponse.java => ClientBinaryConfigurationGetResponse.java} (70%)
 copy modules/core/src/test/java/org/apache/ignite/platform/{PlatformAttributeNodeFilter.java => PlatformCustomBinaryBasicNameMapper.java} (70%)
 copy modules/core/src/test/java/org/apache/ignite/platform/{PlatformAttributeNodeFilter.java => PlatformCustomBinaryNameMapper.java} (71%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/Binary/BinaryConfigurationRetrievalTest.cs
 copy modules/platforms/dotnet/Apache.Ignite.Core.Tests/Config/{cache-default.xml => binary-custom-name-mapper.xml} (87%)
 copy modules/platforms/dotnet/Apache.Ignite.Core.Tests/Config/{cache-default.xml => binary-custom-name-mapper2.xml} (87%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Binary/BinaryConfigurationClientInternal.cs
 copy modules/platforms/dotnet/Apache.Ignite.Core/Impl/{Binary/BinaryMode.cs => Client/Binary/BinaryNameMapperMode.cs} (70%)