com.facebook.react.bridge.ActivityEventListener.java Source code

Java tutorial

Introduction

Here is the source code for com.facebook.react.bridge.ActivityEventListener.java

Source

/*
 * 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.
 */

package com.facebook.react.bridge;

import android.app.Activity;
import android.content.Intent;

/**
 * Listener for receiving activity events. Consider using {@link BaseActivityEventListener} if
 * you're not interested in all the events sent to this interface.
 */
public interface ActivityEventListener {

    /** Called when host (activity/service) receives an {@link Activity#onActivityResult} call. */
    void onActivityResult(Activity activity, int requestCode, int resultCode, Intent data);

    /** Called when a new intent is passed to the activity */
    void onNewIntent(Intent intent);
}