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 de43f96 Updated readme file removing outdated and redundant content
add 1578935 IGNITE-11709 .NET Thin Client: introduce Cluster API
No new revisions were added by this update.
Summary of changes:
.../platform/client/ClientMessageParser.java | 29 +++
.../ClientClusterChangeStateRequest.java} | 22 +-
.../ClientClusterIsActiveRequest.java} | 20 +-
.../ClientClusterWalChangeStateRequest.java} | 22 +-
.../ClientClusterWalChangeStateResponse.java} | 26 +--
.../ClientClusterWalGetStateRequest.java} | 16 +-
.../Apache.Ignite.Core.Tests.DotNetCore.csproj | 1 +
.../Apache.Ignite.Core.Tests.csproj | 1 +
.../Client/Cluster/ClientClusterTests.cs | 221 +++++++++++++++++++++
.../Apache.Ignite.Core/Apache.Ignite.Core.csproj | 2 +
.../Apache.Ignite.Core/Client/IClientCluster.cs | 74 +++++++
.../Apache.Ignite.Core/Client/IIgniteClient.cs | 6 +
.../Apache.Ignite.Core/Impl/Client/ClientOp.cs | 8 +-
.../Impl/Client/Cluster/ClientCluster.cs | 131 ++++++++++++
.../Apache.Ignite.Core/Impl/Client/IgniteClient.cs | 7 +
15 files changed, 533 insertions(+), 53 deletions(-)
copy
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/{cache/ClientCacheGetOrCreateWithNameRequest.java
=> cluster/ClientClusterChangeStateRequest.java} (71%)
copy
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/{cache/ClientCacheGetOrCreateWithNameRequest.java
=> cluster/ClientClusterIsActiveRequest.java} (72%)
copy
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/{cache/ClientCacheGetOrCreateWithNameRequest.java
=> cluster/ClientClusterWalChangeStateRequest.java} (67%)
copy
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/{cache/ClientCacheQueryNextPageResponse.java
=> cluster/ClientClusterWalChangeStateResponse.java} (70%)
copy
modules/core/src/main/java/org/apache/ignite/internal/processors/platform/client/{cache/ClientCacheGetOrCreateWithNameRequest.java
=> cluster/ClientClusterWalGetStateRequest.java} (72%)
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Core.Tests/Client/Cluster/ClientClusterTests.cs
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Core/Client/IClientCluster.cs
create mode 100644
modules/platforms/dotnet/Apache.Ignite.Core/Impl/Client/Cluster/ClientCluster.cs