種類
- インスタンスメソッド (24)
- ライブラリ (12)
ライブラリ
-
net
/ imap (24)
クラス
-
Net
:: IMAP (24)
キーワード
- disconnected? (12)
-
net
/ imap (12)
検索結果
-
Net
:: IMAP # disconnect -> nil (18101.0) -
サーバとの接続を切断します。
...サーバとの接続を切断します。
@see Net::IMAP#disconnected?... -
Net
:: IMAP # disconnected? -> bool (6106.0) -
サーバとの接続が切断されていれば真を返します。
...サーバとの接続が切断されていれば真を返します。
@see Net::IMAP#disconnect... -
net
/ imap (6.0) -
このライブラリは Internet Message Access Protocol (IMAP) の クライアントライブラリです。2060 を元に 実装されています。
...h_thread = Thread.start { imap.fetch(1..-1, "UID") }
search_result = imap.search(["BODY", "hello"])
fetch_result = fetch_thread.value
imap.disconnect
とすると FETCH コマンドと SEARCH コマンドを並列に実行します。
=== エラーについて
IMAP サーバは以下の3種...