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
を受け取ります。
Instance Method
インスタンスメソッド
send
sendPingWithPongReceiveHandler:
Sends a ping frame from the client side, with a closure to receive the pong from the server endpoint.
pingフレームをクライアント側から送信します、pongをサーバーエンドポイントから受信するクロージャとともに。
Availability 有効性
- iOS 13.0+
- iPadOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
- (void)sendPingWithPongReceiveHandler:(void (^)(NSError
*error))pongReceiveHandler;
Parameters パラメータ
pongReceiveHandler
Discussion 議論
When sending multiple pings, the task always calls pong
in the order it sent the pings.
複数のpingを送信している場合、タスクは常にpong
をそれがpingを送信した順番で呼び出します。