您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

12 行
296 B

  1. using System.Threading.Tasks;
  2. namespace DotNetCore.CAP
  3. {
  4. /// <summary>
  5. /// Represents bootstrapping logic. For example, adding initial state to the storage or querying certain entities.
  6. /// </summary>
  7. public interface IBootstrapper
  8. {
  9. Task BootstrapAsync();
  10. }
  11. }