mirror of
https://github.com/lostisland/faraday.git
synced 2025-11-27 00:04:03 -05:00
22 lines
498 B
Markdown
22 lines
498 B
Markdown
# EM-Synchrony Adapter
|
|
|
|
This Adapter uses the [em-synchrony][rdoc] gem to make HTTP requests.
|
|
|
|
```ruby
|
|
conn = Faraday.new(...) do |f|
|
|
# no custom options available
|
|
f.adapter :em_synchrony
|
|
end
|
|
```
|
|
|
|
## Links
|
|
|
|
* [Gem RDoc][rdoc]
|
|
* [Gem source][src]
|
|
* [Adapter RDoc][adapter_rdoc]
|
|
* [EM-HTTP Adapter](./em-http.md)
|
|
|
|
[rdoc]: https://www.rubydoc.info/gems/em-synchrony
|
|
[src]: https://github.com/igrigorik/em-synchrony
|
|
[adapter_rdoc]: https://www.rubydoc.info/gems/faraday/Faraday/Adapter/EMSynchrony
|