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/01/19 13:39:41 UTC

[ignite] branch master updated (65a02ca -> b8914bc)

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

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


    from 65a02ca  IGNITE-13912 Fixed calculation of the number of segments to be deleted - Fixes #8650.
     add b8914bc  IGNITE-13958 .NET: Add implicit Java type registration in ExecuteJavaTask (#8635)

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 +-
 .../Client/Cache/CacheTestNoMeta.cs                |  3 +-
 .../Compute/ComputeApiTest.JavaTask.cs             |  3 +
 .../Compute/ComputeApiTypeAutoRegisterTest.cs      | 93 ++++++++++++++++++++++
 .../Apache.Ignite.Core.Tests/Services/Model.cs     | 20 +++++
 .../Services/ServiceProxyTest.cs                   | 41 ++++------
 ...solveTest.cs => ServicesTypeAutoResolveTest.cs} |  0
 .../Impl/Binary/BinaryProcessor.cs                 | 34 ++------
 .../Impl/Binary/BinaryProcessorClient.cs           | 13 ++-
 .../Impl/Binary/IBinaryProcessor.cs                |  9 ++-
 .../Apache.Ignite.Core/Impl/Binary/Marshaller.cs   | 43 +++++++++-
 .../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 ++-
 23 files changed, 300 insertions(+), 163 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} (100%)