Document intentional retain cycle on RCTJavaScriptContext

Summary:
public

More people wanted to understand the motivation behind the intentional retain
cycle in `RCTJavaScriptContext`, add a small comment with some context.

Reviewed By: jspahrsummers

Differential Revision: D2738930

fb-gh-sync-id: d8c950778eb6bf3eaca627aabb6c98335d25d1fc
This commit is contained in:
Tadeu Zagallo 2015-12-09 04:37:40 -08:00 коммит произвёл facebook-github-bot-6
Родитель 0ce2bce201
Коммит f8be783798
1 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -51,14 +51,22 @@ static NSString *const RCTJSCProfilerEnabledDefaultsKey = @"RCTJSCProfilerEnable
@implementation RCTJavaScriptContext
{
RCTJavaScriptContext *_self;
RCTJavaScriptContext *_selfReference;
}
- (instancetype)initWithJSContext:(JSContext *)context
{
if ((self = [super init])) {
_context = context;
_self = self;
/**
* Explicitly introduce a retain cycle here - The RCTContextExecutor might
* be deallocated while there's still work enqueued in the JS thread, so
* we wouldn't be able kill the JSContext. Instead we create this retain
* cycle, and enqueue the -invalidate message in this object, it then
* releases the JSContext, breaks the cycle and stops the runloop.
*/
_selfReference = self;
}
return self;
}
@ -79,7 +87,7 @@ RCT_NOT_IMPLEMENTED(-(instancetype)init)
{
if (self.isValid) {
_context = nil;
_self = nil;
_selfReference = nil;
}
}