eDistantObject
eDistantObject copied to clipboard
eDistantObject (eDO) - Remote invocation library for iOS
When I try to run the test after cloning, I get the error Showing All Messages Undefined symbol: _OBJC_CLASS_$_EDOTestValueType
diff --git a/Channel/Sources/EDOChannelUtil.m b/Channel/Sources/EDOChannelUtil.m index 9894719..433a1c3 100644 --- a/Channel/Sources/EDOChannelUtil.m +++ b/Channel/Sources/EDOChannelUtil.m @@ -53,7 +53,7 @@ size_t EDOGetPayloadSizeFromFrameData(dispatch_data_t data) { EDOSocketFrameHeader_t *frame = NULL; dispatch_data_t contiguousData = dispatch_data_create_map(data, (const void **)&frame,...
Hi, Here is a few feedback on https://github.com/google/eDistantObject/blob/master/docs/detail.md I'm trying to understand it, and thought maybe you'd want some feedback. I must note I'm new to Objective-C/iOS development, trying to...
Don't prevent passing NULL to non-Objective-C pointer parameters. The purpose for disallowing non-Objective-C pointer parameters is because there's no way to know how big a C pointer's underlying data is....
Don't prevent passing NULL to non-Objective-C pointer parameters. The purpose for disallowing non-Objective-C pointer parameters is because there's no way to know how big a C pointer's underlying data is....
As I know, eDO use tcp connect to communicate with host and client. why make it only connect on localhost with two process? I think it can run on two...
As discussed in #156, it seems that blocks cannot be properly serialized to remote objects, when attempting a remote method call in a `+load` method, due to load order woes....