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



##########
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:
       Fixed

##########
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:
       Fixed




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to