public void run() {
      logger.debug("Executing BidAskDownloaderPocJob for scrip-" + scrip);

      while (true) {
        String dom = "";
        try {
          dom = worker.getBidAskListDom(scrip);
          ShareKhanBidAskLists skBaList = ShareKhanParserUtil.getBidAskLists(dom);
          skBaList.setScrip(scrip);
          printBidAskListToConsole(skBaList);
          Thread.sleep(10000);
        } catch (Exception e) {
          logger.error(e);
          e.printStackTrace();
          throw new RuntimeException(e);
        }
      }
      // logger.debug("FINISHED Executing BidAskDownloaderPocJob for scrip-"+scrip);
    }