You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2021/12/21 15:11:25 UTC

[GitHub] [ignite] ptupitsyn commented on a change in pull request #9678: IGNITE-13359 .NET: GetServiceDescriptor implemented

ptupitsyn commented on a change in pull request #9678:
URL: https://github.com/apache/ignite/pull/9678#discussion_r773212603



##########
File path: modules/platforms/dotnet/Apache.Ignite.Core/Client/Services/IServicesClient.cs
##########
@@ -38,6 +40,19 @@ public interface IServicesClient
         /// <returns>Proxy object that forwards all member calls to a remote Ignite service.</returns>
         T GetServiceProxy<T>(string serviceName) where T : class;
 
+        /// <summary>
+        /// Gets metadata about all deployed services in the grid.
+        /// </summary>
+        /// <returns>Metadata about all deployed services in the grid.</returns>
+        ICollection<IClientServiceDescriptor> ServiceDescriptors();

Review comment:
       ```suggestion
           ICollection<IClientServiceDescriptor> GetServiceDescriptors();
   ```
   
   (to be consistent with `IServices` and .NET naming guidelines)

##########
File path: modules/platforms/dotnet/Apache.Ignite.Core/Client/Services/IServicesClient.cs
##########
@@ -38,6 +40,19 @@ public interface IServicesClient
         /// <returns>Proxy object that forwards all member calls to a remote Ignite service.</returns>
         T GetServiceProxy<T>(string serviceName) where T : class;
 
+        /// <summary>
+        /// Gets metadata about all deployed services in the grid.
+        /// </summary>
+        /// <returns>Metadata about all deployed services in the grid.</returns>
+        ICollection<IClientServiceDescriptor> ServiceDescriptors();
+
+        /// <summary>
+        /// Gets metadata about deployed services in the grid.
+        /// </summary>
+        /// <param name="serviceName">Service name</param>
+        /// <returns>Metadata about all deployed services in the grid.</returns>
+        IClientServiceDescriptor ServiceDescriptor(string serviceName);

Review comment:
       ```suggestion
           IClientServiceDescriptor GetServiceDescriptor(string serviceName);
   ```

##########
File path: modules/platforms/dotnet/Apache.Ignite.Core/Client/Services/IClientServiceDescriptor.cs
##########
@@ -0,0 +1,74 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+namespace Apache.Ignite.Core.Client.Services
+{
+    using System;
+
+    /// <summary>
+    /// Descriptor of Service.
+    /// </summary>
+    public interface IClientServiceDescriptor
+    {
+        /// <summary>
+        /// Gets service name.
+        /// </summary>
+        /// <returns>Service name.</returns>
+        string Name { get; }
+
+        /// <summary>
+        /// Gets service class name.
+        /// </summary>
+        /// <returns>Service class name.</returns>
+        string ServiceClass { get; }
+
+        /// <summary>
+        /// Gets maximum allowed total number of deployed services in the grid, 0 for unlimited.
+        /// </summary>
+        /// <returns>Maximum allowed total number of deployed services in the grid, 0 for unlimited.</returns>
+        int TotalCount { get; }
+
+        /// <summary>
+        /// Gets maximum allowed number of deployed services on each node, {@code 0} for unlimited.
+        /// </summary>
+        /// <returns>Maximum allowed total number of deployed services on each node, {@code 0} for unlimited.</returns>
+        int MaxPerNodeCount { get; }
+
+        /// <summary>
+        /// Gets cache name used for key-to-node affinity calculation.
+        /// This parameter is optional and is set only when key-affinity service was deployed.
+        /// </summary>
+        /// <returns>Cache name, possibly null.</returns>
+        string CacheName { get; }
+
+        /// <summary>
+        /// Gets ID of grid node that initiated the service deployment.
+        /// </summary>
+        /// <returns>ID of grid node that initiated the service deployment.</returns>
+        Guid? OriginNodeId { get; }
+
+        /// <summary>
+        /// Platform id.
+        /// <ul>
+        /// <li>0 is Java platform service.</li>
+        /// <li>1 is .Net platform service.</li>
+        /// </ul>
+        /// </summary>
+        /// <returns>Platform id.</returns>
+        byte PlatformId { get; }

Review comment:
       Same as #9677 , let's add an `enum PlatformType` to the public API. In case of .NET we can move internal `Apache.Ignite.Core.Impl.Common.PlatformType` to `Apache.Ignite.Core.Common.PlatformType` and make it public.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org