Sets a client option per-request @param key Option name @param value Option value @return The request itself
(String key, Object value)
| 120 | * @return The request itself |
| 121 | */ |
| 122 | public Request option(String key, Object value) { |
| 123 | this.options.put(key, value); |
| 124 | return this; |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Sets a header per-request |
no outgoing calls