> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt. ## 0.8.1 **`(feat):`** The RequestOptions object now supports configuring an optional timeout to apply per-request. ```java RequestOptions ro = RequestOptions.builder().timeout(90).build(); // Creates a timeout of 90 seconds for the request // You could also specify the timeunit, similar to as if you were using OkHttp directly // RequestOptions ro = RequestOptions.builder().timeout(2, TimeUnit.MINUTES).build(); client.films.list(ro); ```