Skip to content

mariohahn/RxWebSocket

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RxWebSocket

Build Status Version License Platform codecov Carthage compatible


Reactive extensions for websockets.

A lightweight abstraction layer over Starscream to make it reactive.

Installation

RxWebSocket is available through CocoaPods and Carthage. To install it, simply add the following line to your depedencies file:

Cocoapods

pod "RxWebSocket"

Carthage

github "fjcaetano/RxWebSocket"

Usage

Every websocket event will be sent to the stream which is an Observable<StreamEvent>.

  public enum StreamEvent {
    case connect
    case disconnect(Error?)
    case pong
    case text(String)
    case data(Data)
  }

You may receive and send text events by subscribing to the text property:

let label = UILabel()
socket.rx.text
    .bind(to: label.rx.text)


sendButton.rx.tap
    .flatMap { textField.text ?? "" }
    .bind(to: socket.rx.text)

For further details, check the Example project.

Contributing

After cloning the project, pull all submodules with

git submodule update --init --recursive

Requirements

RxWebSocket relies on the following for development:

To install all dependencies without hassles just run:

./install_dependencies.sh

Which will install all the dependencies and virtual envs if necessary.

Running Tests

Xcode and Fastlane will take care of starting and stopping websocket echoservers for testing, however if you find that tests are timing out, this is usually a sign that the server is not running. If so, you can manage it running

./server.sh {start|stop|restart|status}

This will tell wstests to launch an echo server on 127.0.0.1:9000. If this port is unusable for you by any reason, you may change it in the server.sh file.

Help Wanted

Do you love RxWebsocket and work actively on apps that use it? We'd love if you could help us keep improving it! Feel free to message us or to start contributing right away!

License

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

Packages

No packages published

Languages

  • Swift 46.9%
  • Ruby 35.1%
  • Shell 10.7%
  • Objective-C 5.7%
  • Python 1.6%