Exemplo n.º 1
0
 @Scheduled(fixedRate = 1200000)
 @Override
 public void crawlPrice() {
   pageRepository.findByType(PageType.PRICE).forEach(this::pullValue);
 }
Exemplo n.º 2
0
 @Scheduled(fixedRate = 600000)
 @Override
 public void crawlExchange() {
   pageRepository.findByType(PageType.EXCHANGE).forEach(this::pullValue);
 }