IChangeFeedInvoke.cs 469 B

123456789101112131415
  1. using Microsoft.Extensions.DependencyInjection;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using TEAMModelOS.SDK.Context.Configuration;
  7. using TEAMModelOS.SDK.Module.AzureCosmosDBV3;
  8. namespace TEAMModelOS.Service.Services.ChangeFeed
  9. {
  10. public interface IChangeFeedInvoke :IBusinessService
  11. {
  12. void MonitorChangeFeed(Dictionary<string, CosmosModelInfo> dict , IServiceCollection _services);
  13. }
  14. }