Java 类com.facebook.react.bridge.queue.ProxyQueueThreadExceptionHandler 实例源码

项目:ReactNativeSignatureExample    文件:WebWorkers.java   
/**
 * Creates a new MessageQueueThread for a background web worker owned by the JS thread with the
 * given MessageQueueThread.
 */
@DoNotStrip
public static MessageQueueThread createWebWorkerThread(int id, MessageQueueThread ownerThread) {
  return MessageQueueThreadImpl.startNewBackgroundThread(
      "web-worker-" + id,
      new ProxyQueueThreadExceptionHandler(ownerThread));
}
项目:react-native-ibeacon-android    文件:WebWorkers.java   
/**
 * Creates a new MessageQueueThread for a background web worker owned by the JS thread with the
 * given MessageQueueThread.
 */
@DoNotStrip
public static MessageQueueThread createWebWorkerThread(int id, MessageQueueThread ownerThread) {
  return MessageQueueThreadImpl.startNewBackgroundThread(
      "web-worker-" + id,
      new ProxyQueueThreadExceptionHandler(ownerThread));
}
项目:react-native-box-loaders    文件:WebWorkers.java   
/**
 * Creates a new MessageQueueThread for a background web worker owned by the JS thread with the
 * given MessageQueueThread.
 */
@DoNotStrip
public static MessageQueueThread createWebWorkerThread(int id, MessageQueueThread ownerThread) {
  return MessageQueueThreadImpl.startNewBackgroundThread(
      "web-worker-" + id,
      new ProxyQueueThreadExceptionHandler(ownerThread));
}