public string Handle(AppStartedEvent msg) { return(string.Empty); }
public void Handle(AppStartedEvent msg) { }
public Task HandleAsync(AppStartedEvent msg) { return(Task.FromResult(0)); }
public void HandleEvent(AppStartedEvent msg, ref CachedImage result) { }
public void NotAnEvent(AppStartedEvent msg) { }
public void Handle(AppStartedEvent msg, ICacheManager s1, ICommonServices s2) { }
public void HandleEvent(AppStartedEvent msg, out bool something) { something = false; }
public void HandleEvent(AppStartedEvent msg, bool something = true) { }
public void ConsumeAsync(AppStartedEvent msg) { }
public string Handle(AppStartedEvent msg) => string.Empty;