You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Network/Contract/IDiscoveryClient.cs

17 lines
501 B

6 years ago
using System.Collections.Generic;
namespace ZeroLevel.Network
6 years ago
{
public interface IDiscoveryClient
{
bool Register(ExServiceInfo info);
6 years ago
IEnumerable<ServiceEndpointInfo> GetServiceEndpoints(string serviceKey);
6 years ago
IEnumerable<ServiceEndpointInfo> GetServiceEndpointsByGroup(string serviceGroup);
6 years ago
IEnumerable<ServiceEndpointInfo> GetServiceEndpointsByType(string serviceType);
ServiceEndpointInfo GetService(string serviceKey, string endpoint);
}
}

Powered by TurnKey Linux.