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.
 
 
 

12 lines
331 B

  1. // Copyright (c) .NET Core Community. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. using System.Threading.Tasks;
  4. namespace DotNetCore.CAP.Dashboard
  5. {
  6. public interface IDashboardDispatcher
  7. {
  8. Task Dispatch(DashboardContext context);
  9. }
  10. }