エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Wait for response with timeout in "Dispatch" library
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Wait for response with timeout in "Dispatch" library
I am going to use Dispatch to write a simple HTTP client. I call dispatch.Http to get a future an... I am going to use Dispatch to write a simple HTTP client. I call dispatch.Http to get a future and call the future to get the response val request = ... val future = Http(request) // call the server asynchronously val response = future() // wait for the response from the server Now I wonder how I can wait with timeout. I would like the last API call to be: // throw an exception if no response rece