CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| 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 3RACSerialCommand 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.