Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haifengkao/racserialcommand
A queue for ReactiveCocoa
https://github.com/haifengkao/racserialcommand
Last synced: about 1 month ago
JSON representation
A queue for ReactiveCocoa
- Host: GitHub
- URL: https://github.com/haifengkao/racserialcommand
- Owner: haifengkao
- License: mit
- Created: 2016-06-02T21:01:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-24T17:10:23.000Z (over 8 years ago)
- Last Synced: 2024-11-17T04:36:18.628Z (about 2 months ago)
- Language: Objective-C
- Size: 370 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RACSerialCommand
[![CI Status](http://img.shields.io/travis/haifengkao/RACSerialCommand.svg?style=flat)](https://travis-ci.org/haifengkao/RACSerialCommand)
[![Coverage Status](https://coveralls.io/repos/haifengkao/RACSerialCommand/badge.svg?branch=master&service=github)](https://coveralls.io/github/haifengkao/RACSerialCommand?branch=master)
[![Version](https://img.shields.io/cocoapods/v/RACSerialCommand.svg?style=flat)](http://cocoapods.org/pods/RACSerialCommand)
[![License](https://img.shields.io/cocoapods/l/RACSerialCommand.svg?style=flat)](http://cocoapods.org/pods/RACSerialCommand)
[![Platform](https://img.shields.io/cocoapods/p/RACSerialCommand.svg?style=flat)](http://cocoapods.org/pods/RACSerialCommand)## Example
Serialize RACSignal execution:
``` objc
RACSerialCommand* command = [[RACSerialCommand alloc] initWithSignalBlock:^RACSignal*(id input){
NSLog(@"%@", input);
return [RACSignal empty];
}];
[command execute:@(1)];
[command execute:@(2)];
[command execute:@(3)];
// will output 1 2 3
```## Requirements
## Installation
RACSerialCommand is available through [CocoaPods](http://cocoapods.org). To install
it, simply add the following line to your Podfile:```ruby
pod "RACSerialCommand"
```## Author
Hai Feng Kao, [email protected]
## License
RACSerialCommand is available under the MIT license. See the LICENSE file for more info.