enum P1::CameraSdk::QueueingStrategy

Overview

v More…

#include <C_P1CameraCommonStructs.h>

enum QueueingStrategy
{
    Always          = 0,
    Overwite        = 1,
    DiscardIfExists = 2,
};

Detailed Documentation

v

Used by CameraSDK internals to decide how (and if) an incoming INotificationEvent should be added to Listener queues.

Each notification event defines a QueueingStrategy, that is consulted when new notifications are added to the Listener.

Version 3.0

Enum Values

Always

Just enqueue the event, no matter what

Overwite

Overwrite a similar already existing event on the queue

DiscardIfExists

If a similar event is already present, discard / ignore new ones