diff --git a/docs/SNAPSHOT.md b/docs/SNAPSHOT.md index 7e330a9..c0a8a22 100644 --- a/docs/SNAPSHOT.md +++ b/docs/SNAPSHOT.md @@ -34,6 +34,13 @@ Currently, available APIs are: * `oneCall()` * `airPollution()` +Also, it is possible to set timeouts for the requests on `openWeatherClient` object: +```java +openWeatherClient.setReadTimeout(1000); +openWeatherClient.setConnectTimeout(1000); +``` +Timeout settings are passed to the requesters as a copy. + Default(more or less) customization points: ```java ...