Respond on exceptions thrown when on main thread
Summary: Changes FlipperPerformBlockOnMainThread to take a responder, and respond with an error if an exception is caught. Reviewed By: passy Differential Revision: D14066982 fbshipit-source-id: 70135bf58171684bcd013c66d9deec366aed36f5
This commit is contained in:
committed by
Facebook Github Bot
parent
c0b5f10693
commit
9b6db1f482
@@ -1,16 +1,16 @@
|
||||
/*
|
||||
* Copyright (c) 2004-present, Facebook, Inc.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the LICENSE
|
||||
* file in the root directory of this source tree.
|
||||
/**
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the LICENSE
|
||||
* file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "SKMacros.h"
|
||||
#import "FlipperResponder.h"
|
||||
|
||||
|
||||
SK_EXTERN_C_BEGIN
|
||||
void FlipperPerformBlockOnMainThread(void(^block)());
|
||||
void FlipperPerformBlockOnMainThread(void(^block)(), id<FlipperResponder> responder);
|
||||
SK_EXTERN_C_END
|
||||
|
||||
@protocol FlipperConnection;
|
||||
|
||||
Reference in New Issue
Block a user