CaptureCallback Callback

Definition

Callback invoked during capture operations, for both ongoing captures and snapshots.

capture_callback(context: object) -> int

Parameters

context object
in The callback context.

Returns

int
An error code.
See DevicesError file for the list of possible error codes.
typedef CaptureCallback = int Function(Object context)

Parameters

context Object
in The callback context.

Returns

int
An error code.
See DevicesError file for the list of possible error codes.
public delegate void _CaptureCallback(IntPtr context);

Parameters

context IntPtr
in The callback context.

Returns

int
An error code.
See DevicesError file for the list of possible error codes.
@FunctionalInterface
public interface CaptureCallback {
    int callback(Object context)
}

Parameters

context Object
in The callback context.

Returns

int
An error code.
See DevicesError file for the list of possible error codes.
typedef int (* id3DevicesCaptureCallback) (
    void * context)

Parameters

context void *
in The callback context.

Returns

int
An error code.
See id3DevicesError file for the list of possible error codes.