Use-case of `oneway void` in Objective-C?

后端 未结 2 692
南笙
南笙 2020-12-07 09:00

I found a strange keyword in NSObject.h

- (oneway void)release;

I searched the web, and learned it relates to asynchronous message passing,

2条回答
  •  春和景丽
    2020-12-07 10:01

    oneway is used with the distributed objects API, which allows use of objective-c objects between different threads or applications. It tells the system that it should not block the calling thread until the method returns. Without it, the caller will block, even though the method's return type is void. Obviously, it is never used with anything other than void, as doing so would mean the method returns something, but the caller doesn't get it.

    For more on distributed objects, see Cocoa Conceptual DistrObjects.

提交回复
热议问题