Add blueprint wiring for netty configs
[controller.git] / opendaylight / config / netty-threadgroup-config / src / main / resources / org / opendaylight / blueprint / netty-threadgroup.xml
diff --git a/opendaylight/config/netty-threadgroup-config/src/main/resources/org/opendaylight/blueprint/netty-threadgroup.xml b/opendaylight/config/netty-threadgroup-config/src/main/resources/org/opendaylight/blueprint/netty-threadgroup.xml
new file mode 100644 (file)
index 0000000..f9ad6a4
--- /dev/null
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
+           xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
+           xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
+    odl:restart-dependents-on-updates="true">
+
+  <cm:property-placeholder persistent-id="org.opendaylight.netty.threadgroup" update-strategy="none">
+    <cm:default-properties>
+      <cm:property name="global-boss-group-thread-count" value="0"/>
+      <cm:property name="global-worker-group-thread-count" value="0"/>
+    </cm:default-properties>
+  </cm:property-placeholder>
+
+  <bean id="globalBossGroup" class="org.opendaylight.controller.config.yang.netty.threadgroup.NioEventLoopGroupCloseable"
+          factory-method="newInstance">
+    <argument value="${global-boss-group-thread-count}"/>
+  </bean>
+
+  <service ref="globalBossGroup" interface="io.netty.channel.EventLoopGroup" odl:type="global-boss-group"/>
+
+  <bean id="globalWorkerGroup" class="org.opendaylight.controller.config.yang.netty.threadgroup.NioEventLoopGroupCloseable"
+          factory-method="newInstance">
+    <argument value="${global-worker-group-thread-count}"/>
+  </bean>
+
+  <service ref="globalWorkerGroup" interface="io.netty.channel.EventLoopGroup" odl:type="global-worker-group"/>
+
+</blueprint>