25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

12 satır
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. }