Instance Method インスタンスメソッド

send(_:completionHandler:)

Sends a WebSocket message, receiving the result in a completion handler. あるWebSocketメッセージを送信します、結果を完了ハンドラにおいて受信します。

Declaration 宣言

func send(_ message: URLSessionWebSocketTask.Message, completionHandler: @escaping (Error?) -> Void)

Parameters パラメータ

message

The WebSocket message to send to the other endpoint. 他のエンドポイントに送ることになるWebSocketメッセージ。

completionHandler

A closure that receives an NSError that indicates an error encountered while sending, or nil if no error occurred. あるクロージャ、それは送信する間に出くわしたエラーを指し示すNSErrorを、またはエラーが発生しなかったならばnilを受け取ります。

Discussion 議論

If an error occurs while sending the message, any outstanding work also fails. メッセージを送っている間にエラーが発生するならば、何らかの未解決の仕事もまた失敗します。

See Also 参照

Sending and Receiving Data データの送信と受信