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

sendMessage:completionHandler:

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

Declaration 宣言

- (void)sendMessage:(NSURLSessionWebSocketMessage *)message 
  completionHandler:(void (^)(NSError *error))completionHandler;

Parameters パラメータ

message

The WebSocket message to send. 送ることになるWebSocketメッセージ。

completionHandler

A block 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 データの送信と受信