awips2/edexOsgi/com.raytheon.uf.edex.datadelivery.bandwidth/res/spring/bandwidth-datadelivery-eventbus.xml
Dustin Johnson 580bc2cadf Issue #2106 Improve BandwidthManager performance, proposed changes are checked much quicker
Change-Id: I3a61de1904d7256de04a97f40f38bf18d78b1438

Former-commit-id: b36200d583 [formerly 59eafdd07754e3711e9c3babd946dfd18c161404]
Former-commit-id: ec2ddd13b1
2013-07-10 15:59:36 -05:00

20 lines
No EOL
777 B
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<bean id="bandwidthEventBus"
class="com.raytheon.uf.edex.datadelivery.bandwidth.notification.BandwidthEventBusBean" />
<bean factory-bean="eventBus" factory-method="register">
<constructor-arg ref="retrievalManager" />
</bean>
<bean factory-bean="eventBus" factory-method="register">
<constructor-arg ref="bandwidthManager" />
</bean>
<bean factory-bean="bandwidthEventBus" factory-method="register">
<constructor-arg ref="bandwidthManager" />
</bean>
</beans>