Protocol
NSURLSessionWebSocketDelegate
A protocol that defines methods that URL session instances call on their delegates to handle task-level events specific to WebSocket tasks.
あるプロトコル、それはいくつかのメソッドを定義します、それらはURLセッションインスタンスがそれらの委任先上で呼び出して、WebSocketタスクに特有なタスク水準イベントを取り扱うものです。
Declaration
宣言
@protocol NSURLSessionWebSocketDelegate
Topics
話題
Handling WebSocket Lifecycle Events
WebSocketライフサイクルイベントを取り扱う
- URLSession:webSocketTask:didOpenWithProtocol:
Tells the delegate that the WebSocket task successfully negotiated the handshake with the endpoint, indicating the negotiated protocol.
WebSocketタスクがハンドシェイクをこのエンドポイントでうまく交渉して取り決めたことを委任先に伝えます、交渉済みのプロトコルを指し示しています。
- URLSession:webSocketTask:didCloseWithCode:reason:
Tells the delegate that the WebSocket task received a close frame from the server endpoint, optionally including a close code and reason from the server.
WebSocketタスクがクローズフレームをサーバーエンドポイントから受け取ったことを委任先に伝えます、随意にサーバーからクローズコードおよび理由を含んでいます。
See Also
参照
Adding WebSocket Tasks to a Session
WebSocketタスクをセッションに加える
NSURLSessionWebSocketTask
A URL session task that communicates over the WebSockets protocol standard.
WebSocketsプロトコル標準越しに通信するあるURLセッションタスク。