Skip to content
This repository has been archived by the owner on Apr 4, 2020. It is now read-only.
/ centrifuge-ios Public archive

Swift client to communicate with Centrifugo v1 from iOS over WebSocket (not maintained anymore)

License

Notifications You must be signed in to change notification settings

centrifugal/centrifuge-ios

Repository files navigation

CentrifugeiOS

Build Status Version License Platform Carthage compatible

Example

To run the example project, clone the repo, and run pod install from the Example directory first. You could chat with here and command from Centrifugal web

Usage

Create client:

let timestamp = "\(Int(Date().timeIntervalSince1970))"
let token =  Centrifuge.createToken(string: "\(user)\(timestamp)", key: secret)
        
let creds = CentrifugeCredentials(token: token, user: user, timestamp: timestamp)
let url = "wss:https://centrifugo.herokuapp.com/connection/websocket"
client = Centrifuge.client(url: url, creds: creds, delegate: self)

Connect to server:

client.connect { message, error in }

Subscribe to channel:

client.subscribe(toChannel: channel, delegate: delegate) { message, error in }

Subscribe to private channel:

client.subscribe(privateChannel: channel, client: clientString, sign: sign, delegate: delegate) { message, error in }

Publish:

client.publish(toChannel: channel, data:  data) { message, error in }

See the example project and docs for more information.

Requirements

  • Version 0.1.0: Swift 2.2, iOS 8.0+
  • Version 1.0.0: Swift 2.3, iOS 8.0+, Xcode 7
  • Version 2.0.0: Swift 2.3, iOS 9.3+, Xcode 8
  • Version 3.0.0: Swift 3.0, iOS 9.3+, Xcode 8
  • Version 4.0.0: Swift 4.0, iOS 9.3+, Xcode 9
  • Version 5.0.0: Swift 4.0, iOS 9.3+, Xcode 9

Installation

CocoaPods

CentrifugeiOS is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "CentrifugeiOS"

Carthage

Add the following to your Cartfile:

github "centrifugal/centrifuge-ios"

Then run carthage update.

Author

German Saprykin, [email protected]

License

CentrifugeiOS is available under the MIT license. See the LICENSE file for more info.