Sets request options using Vert.x HttpClientOptions. @param options HttpClientOptions for full customization of the underlying Vert.x HttpClient @return this builder
(final HttpClientOptions options)
| 271 | * @return this builder |
| 272 | */ |
| 273 | public Builder options(final HttpClientOptions options) { |
| 274 | this.options = checkNotNull(options, "Argument options must be not null"); |
| 275 | return this; |
| 276 | } |
| 277 | |
| 278 | /** |
| 279 | * Sets request options using Feign {@link Request.Options}. |
no outgoing calls