Skip to content

Instantly share code, notes, and snippets.

@bijukunjummen
Created July 27, 2020 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bijukunjummen/6af8cddc6dfb5f4dab6a62a809964b72 to your computer and use it in GitHub Desktop.
Save bijukunjummen/6af8cddc6dfb5f4dab6a62a809964b72 to your computer and use it in GitHub Desktop.
producer.produce(producerRate, count)
    .subscribeOn(subscribeOnScheduler)
    .publishOn(publishOnScheduler, 10)
    .subscribe { value: Long ->
        sleep(delayBetweenConsumes)
        logger.info("Consumed {}", value)
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment