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