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

sendPingWithPongReceiveHandler:

Sends a ping frame from the client side, with a closure to receive the pong from the server endpoint. pingフレームをクライアント側から送信します、pongをサーバーエンドポイントから受信するクロージャとともに。

Declaration 宣言

- (void)sendPingWithPongReceiveHandler:(void (^)(NSError *error))pongReceiveHandler;

Parameters パラメータ

pongReceiveHandler

A block called by the task when it receives the pong from the server. The block receives an NSError that indicates a lost connection or other error, or nil if no error cocured. そのタスクによって、それがサーバからpongを受信する時に呼び出されるブロック。このブロックは、接続喪失または他のエラーを指し示すNSErrorを、またはエラーが発生しなかったならばnilを受け取ります。

Discussion 議論

When sending multiple pings, the task always calls pongReceiveHandler in the order it sent the pings. 複数のpingを送信している場合、タスクは常にpongReceiveHandlerをそれがpingを送信した順番で呼び出します。