FayeSwift
FayeSwift copied to clipboard
Swift Client Library for the Faye Pub-Sub messaging server (http://faye.jcoglan.com/)
Update SwiftyJSON to 4.3.0 Update Starscream to 4.0.4 Fix issues to compile for Swift5
Currently the project is using Swift 3.
In func parseFayeMessage(_ messageJSON:JSON) when .Handshake is handled self.fayeConnected assigned to true after self.delegate?.connectedToServer(self) is called. As result delegate cannot publish since faye.publish wouldn't do anything until self.fayeConnected is true....
Currently, FayeSwift serializes a single JSON message sent to the server as a JSON object. As stated in the Bayeux protocol specification, clients *should* send even single server messages as...
In addition to a channel, I need to send a conversation ID as a parameter to my server. Is that something I can accomplish with this library? When my web...