feat 网关继承微服务Swagger
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
namespace KonSoft.InternalGateway.Aggregations.Base;
|
||||
|
||||
public interface IAggregateRemoteService<TDto>
|
||||
{
|
||||
Task<Dictionary<string, TDto>> GetMultipleAsync(Dictionary<string, string> serviceNameWithUrlDictionary);
|
||||
Task<T> MakeRequestAsync<T>(HttpClient httpClient, string url);
|
||||
Task<KeyValuePair<TKey, Task<TValue>>> WaitForAnyTaskAsync<TKey, TValue>(Dictionary<TKey, Task<TValue>> tasks);
|
||||
}
|
||||
Reference in New Issue
Block a user