Skip to content
This repository was archived by the owner on Mar 27, 2020. It is now read-only.

Latest commit

 

History

History
37 lines (25 loc) · 1 KB

File metadata and controls

37 lines (25 loc) · 1 KB

MsgPackSerialization

MsgPackSerialization encodes and decodes between Objective-C objects and MsgPack data, following the API conventions of Foundation's NSJSONSerialization class.

Usage

id obj = @{
           @"foo": @(42.0),
           @"bar": @"lorem ipsum",
           @"baz": @[@1, @2, @3, @4]
           };

NSError *error = nil;

CFAbsoluteTime t_0 = CFAbsoluteTimeGetCurrent();
NSData *data = [MsgPackSerialization dataWithMsgPackObject:obj options:0 error:&error];
NSLog(@"Packed: %@ (Elapsed: %g)", data, CFAbsoluteTimeGetCurrent() - t_0);

CFAbsoluteTime t_1 = CFAbsoluteTimeGetCurrent();
NSLog(@"Unpacked: %@ (Elapsed: %g)", [MsgPackSerialization MsgPackObjectWithData:data options:0 error:&error], CFAbsoluteTimeGetCurrent() - t_1);

Contact

Mattt Thompson

License

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