public abstract class

CameraCaptureCallback

extends java.lang.Object

 java.lang.Object

↳androidx.camera.core.CameraCaptureCallback

Subclasses:

CameraCaptureCallbacks.ComboCameraCaptureCallback

Overview

A callback object for tracking the progress of a capture request submitted to the camera device.

Summary

Constructors
publicCameraCaptureCallback()

Methods
public voidonCaptureCompleted(CameraCaptureResult cameraCaptureResult)

This method is called when an image capture has fully completed and all the result metadata is available.

public voidonCaptureFailed(CameraCaptureFailure failure)

This method is called instead of CameraCaptureCallback.onCaptureCompleted(CameraCaptureResult) when the camera device failed to produce a CameraCaptureResult for the request.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public CameraCaptureCallback()

Methods

public void onCaptureCompleted(CameraCaptureResult cameraCaptureResult)

This method is called when an image capture has fully completed and all the result metadata is available.

Parameters:

cameraCaptureResult: The output metadata from the capture.

public void onCaptureFailed(CameraCaptureFailure failure)

This method is called instead of CameraCaptureCallback.onCaptureCompleted(CameraCaptureResult) when the camera device failed to produce a CameraCaptureResult for the request.

Parameters:

failure: The output failure from the capture, including the failure reason.

Source

/*
 * Copyright (C) 2019 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.camera.core;

import androidx.annotation.NonNull;
import androidx.annotation.RestrictTo;
import androidx.annotation.RestrictTo.Scope;

/**
 * A callback object for tracking the progress of a capture request submitted to the camera device.
 *
 * @hide
 */
@RestrictTo(Scope.LIBRARY_GROUP)
public abstract class CameraCaptureCallback {

    /**
     * This method is called when an image capture has fully completed and all the result metadata
     * is available.
     *
     * @param cameraCaptureResult The output metadata from the capture.
     */
    public void onCaptureCompleted(@NonNull CameraCaptureResult cameraCaptureResult) {
    }

    /**
     * This method is called instead of {@link #onCaptureCompleted} when the camera device failed to
     * produce a {@link CameraCaptureResult} for the request.
     *
     * @param failure The output failure from the capture, including the failure reason.
     */
    public void onCaptureFailed(@NonNull CameraCaptureFailure failure) {
    }
}