Subversion Repositories SmartDukaan

Rev

Rev 27680 | Rev 27892 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 27680 Rev 27686
Line 94... Line 94...
94
		scheduledTasks.processActivation();
94
		scheduledTasks.processActivation();
95
	}
95
	}
96
 
96
 
97
	@Scheduled(cron = "0 */5 * * * *")
97
	@Scheduled(cron = "0 */5 * * * *")
98
	public void sendNotification() throws Throwable {
98
	public void sendNotification() throws Throwable {
99
		log.info("startTime" + LocalDateTime.now());
-
 
100
		scheduledTasks.sendNotification();
99
		scheduledTasks.sendNotification();
-
 
100
	}
-
 
101
	
-
 
102
	@Scheduled(cron = "0 */10 * * * *")
-
 
103
	public void attachToffeeInvoices() throws Throwable {
101
		log.info("endTime" + LocalDateTime.now());
104
		scheduledTasks.attachToffeeInvoices();
102
	}
105
	}
103
 
106
 
104
	@Scheduled(cron = "0 0 5 * * *")
107
	@Scheduled(cron = "0 0 5 * * *")
105
	public void ticketClosed() throws Throwable {
108
	public void ticketClosed() throws Throwable {
106
 
109
 
Line 133... Line 136...
133
		scheduledTasks.checkValidateReferral();
136
		scheduledTasks.checkValidateReferral();
134
 
137
 
135
		log.info("endTime" + LocalDateTime.now());
138
		log.info("endTime" + LocalDateTime.now());
136
	}
139
	}
137
 
140
 
138
	/*
-
 
139
	 * @Scheduled(cron = "0 0 1 1 * *") public void checkPriceDrop() throws
-
 
140
	 * Throwable { scheduledTasks.checkPriceDrop(); }
-
 
141
	 */
-
 
142
 
-
 
143
}
141
}