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

[ignite] branch ignite-2.10 updated (5416153 -> 2b2a16c)

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

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


    from 5416153  IGNITE-14139 Incorrect initialize checkpoint-runner-cpu thread pool (#8770)
     add e342819  IGNITE-13958 .NET: Add implicit Java type registration in ExecuteJavaTask (#8635)
     add 2b2a16c  IGNITE-14169 .NET: Add NamespacePrefix and NamespaceToLower to BinaryBasicNameMapper (#8795)

No new revisions were added by this update.

Summary of changes:
 ...meTask.java => PlatformComputeEchoArgTask.java} | 26 +++---
 .../ignite/platform/PlatformComputeEchoTask.java   | 14 ++++
 .../platform/model/{Department.java => V1.java}    | 14 ++--
 .../platform/model/{Department.java => V2.java}    | 14 ++--
 .../platform/model/{Department.java => V3.java}    | 14 ++--
 .../platform/model/{Department.java => V4.java}    | 14 ++--
 .../Apache.Ignite.Core.Tests.csproj                |  3 +-
 .../Binary/BinaryNameMapperTest.cs                 | 80 ++++++++++++++++++
 .../Cache/CacheAbstractTest.cs                     |  2 +-
 .../Client/Cache/CacheTestNoMeta.cs                |  3 +-
 .../Compute/ComputeApiTest.JavaTask.cs             |  3 +
 .../Compute/ComputeApiTypeAutoRegisterTest.cs      | 98 ++++++++++++++++++++++
 .../Apache.Ignite.Core.Tests/LifecycleTest.cs      |  4 +-
 .../Services/IJavaService.cs                       |  2 +-
 .../Services/JavaServiceDynamicProxy.cs            |  2 +-
 .../Apache.Ignite.Core.Tests/Services/Model.cs     | 22 ++++-
 .../Services/ServiceProxyTest.cs                   | 41 ++++-----
 .../Services/ServicesTest.cs                       |  2 +-
 ...solveTest.cs => ServicesTypeAutoResolveTest.cs} | 11 ++-
 .../Binary/BinaryBasicNameMapper.cs                | 61 +++++++++-----
 .../Binary/BinaryReflectiveSerializer.cs           |  2 +-
 .../Apache.Ignite.Core/IgniteConfiguration.cs      |  2 +-
 .../IgniteConfigurationSection.xsd                 |  2 +-
 .../dotnet/Apache.Ignite.Core/Ignition.cs          |  2 +-
 .../Impl/Binary/BinaryProcessor.cs                 | 34 ++------
 .../Impl/Binary/BinaryProcessorClient.cs           | 13 ++-
 .../Apache.Ignite.Core/Impl/Binary/BinaryUtils.cs  |  2 +-
 .../Impl/Binary/IBinaryProcessor.cs                |  9 +-
 .../Apache.Ignite.Core/Impl/Binary/Marshaller.cs   | 42 +++++++++-
 .../Impl/Binary/TypeNameParser.cs                  | 18 +++-
 .../Impl/Common/FutureConverter.cs                 | 22 ++++-
 .../Apache.Ignite.Core/Impl/Compute/ComputeImpl.cs | 10 +++
 .../Impl/IPlatformTargetInternal.cs                |  3 +-
 .../Apache.Ignite.Core/Impl/PlatformJniTarget.cs   |  5 +-
 .../Impl/PlatformTargetAdapter.cs                  | 53 +-----------
 .../Apache.Ignite.Core/Impl/Services/Services.cs   | 12 ++-
 modules/platforms/dotnet/Apache.Ignite/App.config  |  2 +-
 37 files changed, 463 insertions(+), 200 deletions(-)
 copy modules/core/src/test/java/org/apache/ignite/platform/{PlatformComputeGetThreadNameTask.java => PlatformComputeEchoArgTask.java} (74%)
 copy modules/core/src/test/java/org/apache/ignite/platform/model/{Department.java => V1.java} (89%)
 copy modules/core/src/test/java/org/apache/ignite/platform/model/{Department.java => V2.java} (89%)
 copy modules/core/src/test/java/org/apache/ignite/platform/model/{Department.java => V3.java} (89%)
 copy modules/core/src/test/java/org/apache/ignite/platform/model/{Department.java => V4.java} (89%)
 create mode 100644 modules/platforms/dotnet/Apache.Ignite.Core.Tests/Compute/ComputeApiTypeAutoRegisterTest.cs
 rename modules/platforms/dotnet/Apache.Ignite.Core.Tests/Services/{ServiceTypeAutoResolveTest.cs => ServicesTypeAutoResolveTest.cs} (95%)