Subversion Repositories SmartDukaan

Rev

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

Rev 31756 Rev 31758
Line 187... Line 187...
187
    @Scheduled(cron = "0 */30 * * * *")
187
    @Scheduled(cron = "0 */30 * * * *")
188
    public void scheduledPushDataToSolr() throws Throwable {
188
    public void scheduledPushDataToSolr() throws Throwable {
189
        this.pushDataToSolr();
189
        this.pushDataToSolr();
190
    }
190
    }
191
 
191
 
192
    @Scheduled(cron = "0 30 8,15 * * *")
192
    @Scheduled(cron = "0 0 8 * * *")
193
    public void scheduledGetBestSeller() throws Throwable {
193
    public void scheduledGetBestSeller() throws Throwable {
194
        this.getBestSeller();
194
        this.getBestSeller();
195
    }
195
    }
196
 
196
 
197
    @Scheduled(cron = "0 30 8,15 * * *")
197
    @Scheduled(cron = "0 0 8 * * *")
198
    public void scheduledGetPriceDrop() throws Throwable {
198
    public void scheduledGetPriceDrop() throws Throwable {
199
        this.getPriceDrop();
199
        this.getPriceDrop();
200
    }
200
    }
201
 
201
 
202
    @Scheduled(cron = "0 30 8 * * *")
202
    @Scheduled(cron = "0 0 8 * * *")
203
    public void scheduledGetNewLaunches() throws Throwable {
203
    public void scheduledGetNewLaunches() throws Throwable {
204
        this.getNewLaunches();
204
        this.getNewLaunches();
205
    }
205
    }
206
 
206
 
207
    @Scheduled(cron = "0 30 8 * * *")
207
    @Scheduled(cron = "0 0 8 * * *")
208
    public void scheduledGetSpecialSupport() throws Throwable {
208
    public void scheduledGetSpecialSupport() throws Throwable {
209
        this.getSpecialSupport();
209
        this.getSpecialSupport();
210
    }
210
    }
211
 
211
 
212
    @Scheduled(cron = "0 30 8 * * *")
212
    @Scheduled(cron = "0 0 8 * * *")
213
    public void scheduledGetUpgradeOffer() throws Throwable {
213
    public void scheduledGetUpgradeOffer() throws Throwable {
214
        this.getUpgradeOffer();
214
        this.getUpgradeOffer();
215
    }
215
    }
216
}
216
}
217
 
217