<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
       xmlns:task="http://www.springframework.org/schema/task"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd  
       http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.3.xsd">		
      
    <bean id="pushBatch" class="i2c.cmm.push.batch.PushBatch" />	
	<task:scheduler id="batchScheduler" pool-size="10" />	
	<task:scheduled-tasks scheduler="batchScheduler">
       <task:scheduled ref="pushBatch" method="run" initial-delay="#{conf['push.fcm.schduled.fixedRate']}" fixed-delay="#{conf['push.fcm.schduled.fixedRate']}" />
    </task:scheduled-tasks>
	
</beans>	

