using System; using System.Threading.Tasks; namespace Ray.Core.EventBus { public interface IProducerContainer { ValueTask GetProducer(); ValueTask GetProducer(Type type); } }