Subversion Repositories SmartDukaan

Rev

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

Rev 33078 Rev 33181
Line 613... Line 613...
613
    public void calculateInterestAccured() throws Throwable {
613
    public void calculateInterestAccured() throws Throwable {
614
        scheduledTasks.calculateInterestAccured();
614
        scheduledTasks.calculateInterestAccured();
615
    }
615
    }
616
 
616
 
617
    //  @Scheduled(cron = "0 */5 2-22 * * *")
617
    //  @Scheduled(cron = "0 */5 2-22 * * *")
618
    @Scheduled(fixedDelay = 5 * 60 * 1000)
618
    @Scheduled(fixedDelay = 1 * 60 * 1000)
619
    //@Scheduled(cron = "0 0 23 * * *")
619
    //@Scheduled(cron = "0 0 23 * * *")
620
    public void loanSettlement() throws Throwable {
620
    public void loanSettlement() throws Throwable {
621
        scheduledTasks.loanSettlement();
621
        scheduledTasks.loanSettlement();
622
    }
622
    }
623
 
623