TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Jun 2016 |
Maintained by Hai Feng Kao.
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
RACSerialCommand is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "RACSerialCommand"
Hai Feng Kao, [email protected]
RACSerialCommand is available under the MIT license. See the LICENSE file for more info.