RACSerialCommand 0.8.0

RACSerialCommand 0.8.0

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Jun 2016

Maintained by Hai Feng Kao.



  • By
  • Hai Feng Kao

Example

Serialize RACSignal execution:

    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. To install it, simply add the following line to your Podfile:

pod "RACSerialCommand"

Author

Hai Feng Kao, [email protected]

License

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