This is an automated email from the ASF dual-hosted git repository.
ptupitsyn pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
from 20f1e002ed IGNITE-22357 Some integration tests don't close the client
(#3832)
add 4ae7895586 IGNITE-19546 .NET: Add Data Streamer with Receiver (#3833)
No new revisions were added by this update.
Summary of changes:
.../Apache.Ignite.Tests/Compute/ComputeTests.cs | 4 +-
.../dotnet/Apache.Ignite.Tests/FakeServer.cs | 21 ++
.../dotnet/Apache.Ignite.Tests/IgniteServerBase.cs | 1 -
.../Apache.Ignite.Tests/PartitionAwarenessTests.cs | 29 +-
.../Apache.Ignite.Tests/Table/DataStreamerTests.cs | 306 +++++++++++++++-
.../platforms/dotnet/Apache.Ignite.sln.DotSettings | 1 +
.../dotnet/Apache.Ignite/ClientOperationType.cs | 7 +-
.../Internal/Common/IgniteArgumentCheck.cs | 27 ++
.../Apache.Ignite/Internal/Compute/Compute.cs | 31 +-
.../Proto/BinaryTuple/BinaryTupleBuilder.cs | 193 +++++++++++
.../Apache.Ignite/Internal/Proto/ClientOp.cs | 5 +-
.../Internal/Proto/ClientOpExtensions.cs | 1 +
.../Apache.Ignite/Internal/Table/DataStreamer.cs | 46 ++-
.../Internal/Table/DataStreamerWithReceiver.cs | 384 +++++++++++++++++++++
.../Apache.Ignite/Internal/Table/KeyValueView.cs | 43 +++
.../Apache.Ignite/Internal/Table/RecordView.cs | 60 +++-
.../dotnet/Apache.Ignite/RetryReadPolicy.cs | 1 +
.../Apache.Ignite/Table/IDataStreamerTarget.cs | 53 +++
.../runner/app/PlatformTestNodeRunner.java | 66 ++++
19 files changed, 1221 insertions(+), 58 deletions(-)
create mode 100644
modules/platforms/dotnet/Apache.Ignite/Internal/Table/DataStreamerWithReceiver.cs