/
aprogrammer
/
reverse-proxy-ms-yarp
Обзор
Документация
Войти
/
aprogrammer
/
reverse-proxy-ms-yarp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Kubernetes.Controller/Protocol/IDispatchTarget.cs
16 строк
428 B
David Bevin
Simplify Library Structure for Kubernetes (#1642)
09 май 2022, 15:27
Не верифицирован
09 май 2022, 15:27
82a831e
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.Threading; using System.Threading.Tasks; namespace Yarp.Kubernetes.Controller.Dispatching; /// <summary> /// IDispatchTarget is what an <see cref="IDispatcher"/> will use to /// dispatch information. /// </summary> public interface IDispatchTarget { public Task SendAsync(byte[] utf8Bytes, CancellationToken cancellationToken); }