> 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):`** RequestOptions 对象现在支持配置每个请求的可选超时时间。

```java
RequestOptions ro = RequestOptions.builder().timeout(90).build(); // 为请求创建 90 秒的超时时间
//  您也可以指定时间单位，类似于直接使用 OkHttp
//  RequestOptions ro = RequestOptions.builder().timeout(2, TimeUnit.MINUTES).build();
client.films.list(ro);
```