Subversion Repositories SmartDukaan

Rev

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

Rev 31758 Rev 34554
Line 182... Line 182...
182
            }
182
            }
183
 
183
 
184
        }
184
        }
185
    }
185
    }
186
 
186
 
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 0 8 * * *")
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 0 8 * * *")
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 0 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 0 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 0 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