in src/main/java/org/openvasp/client/service/impl/WhisperServiceImpl.java [74:85]
public WhisperServiceImpl(
final VaspConfig vaspConfig,
final ExceptionHandler exceptionHandler,
final WhisperApi whisper) {
this.exceptionHandler = exceptionHandler;
this.whisper = whisper;
this.pollingThread = new Thread(
this::topicPollingLoop,
"TopicPollingLoop-" + vaspConfig.getVaspInfo().getVaspCode());
pollingThread.start();
}