Socket 客户端 SocketIOCocoa

码农软件 · 软件分类 · 网络(Networking) · 2019-07-10 14:57:05

软件介绍

SocketIOCocoa 是用 Swift 编写的 Socket.IO 的客户端开发包。同时也提供 Objective-C 版本。

示例代码:

创建客户端:

var client = SocketIOClient(uri: uri, reconnect: true, timeout: 30)
client.open()

创建 Socket

var socket = client.socket("namespace")// Set a delegate on socket

SocketIOSocketDelegate

@objc public protocol SocketIOSocketDelegate {
    // Called when the socket received a low level packet
    optional func socketOnPacket(socket: SocketIOSocket, packet: SocketIOPacket)

    // Called when the socket received an event
    func socketOnEvent(socket: SocketIOSocket, event: String, data: AnyObject?)

    // Called when the socket is open
    func socketOnOpen(socket: SocketIOSocket)

    // Called when the socket is on error
    func socketOnError(socket: SocketIOSocket, error: String, description: String?)
}

发送消息:

socket.event("message", data: [1,2,3]) { (packet) -> Void in
    expectation.fulfill()
}
self.waitForExpectationsWithTimeout(300, handler: nil)

本文地址:https://codercto.com/soft/d/9832.html

Neural Networks for Applied Sciences and Engineering

Neural Networks for Applied Sciences and Engineering

Samarasinghe, Sandhya / CRC Pr I Llc / 2006-9 / $ 118.59

In response to the exponentially increasing need to analyze vast amounts of data, Neural Networks for Applied Sciences and Engineering: From Fundamentals to Complex Pattern Recognition provides scient......一起来看看 《Neural Networks for Applied Sciences and Engineering》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

MD5 加密
MD5 加密

MD5 加密工具

SHA 加密
SHA 加密

SHA 加密工具