Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

configurable timeouts

Compare
Choose a tag to compare
@200Puls 200Puls released this 29 Jan 22:19
· 54 commits to master since this release
  • Add support for configuring connect and read timeouts. Defaults remain at 6 seconds as before.

Usage in request:

    ForecastRequest request = new ForecastRequestBuilder()
	.timeouts(new Timeouts(Duration.ofMillis(1), Duration.ZERO))
	.....build();