Exemple #1
0
 public string Handle(AppStartedEvent msg)
 {
     return(string.Empty);
 }
Exemple #2
0
 public void Handle(AppStartedEvent msg)
 {
 }
Exemple #3
0
 public Task HandleAsync(AppStartedEvent msg)
 {
     return(Task.FromResult(0));
 }
Exemple #4
0
 public void HandleEvent(AppStartedEvent msg, ref CachedImage result)
 {
 }
Exemple #5
0
 public void NotAnEvent(AppStartedEvent msg)
 {
 }
Exemple #6
0
 public void Handle(AppStartedEvent msg, ICacheManager s1, ICommonServices s2)
 {
 }
Exemple #7
0
 public void HandleEvent(AppStartedEvent msg, out bool something)
 {
     something = false;
 }
Exemple #8
0
 public void HandleEvent(AppStartedEvent msg, bool something = true)
 {
 }
Exemple #9
0
 public void ConsumeAsync(AppStartedEvent msg)
 {
 }
 public string Handle(AppStartedEvent msg) => string.Empty;