| | |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnBean; |
| | | |
| | | @ConditionalOnBean({NotifyResultProducer.class, NotifierProvidersMapManager.class, NotifyConfigManager.class}) |
| | | /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/manager/DefaultNotifierManager.class */ |
| | | public class DefaultNotifierManager implements NotifierManager { |
| | | private static final Logger log = LoggerFactory.getLogger(DefaultNotifierManager.class); |
| | | private NotifyResultProducer notifyResultProducer; |
| | | private NotifierProvidersMapManager notifierProvidersMapManager; |
| | | private NotifyConfigManager configManager; |
| | | private Map<String, Notifier> notifiers = new ConcurrentHashMap(); |
| | | private Map<String, Notifier> notifiers = new ConcurrentHashMap<>(); |
| | | |
| | | public DefaultNotifierManager(NotifyResultProducer notifyResultProducer, NotifierProvidersMapManager notifierProvidersMapManager, NotifyConfigManager configManager) { |
| | | this.notifyResultProducer = notifyResultProducer; |