.. index:: pair: class; P1::CameraSdk::ISubscriptionManager .. _doxid-class_p1_1_1_camera_sdk_1_1_i_subscription_manager: class P1::CameraSdk::ISubscriptionManager ========================================= .. toctree:: :hidden: Overview ~~~~~~~~ Access subscriptions available in the camera. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include class ISubscriptionManager { public: // methods virtual std::shared_ptr<:ref:`IPreviewSubscription`> :ref:`Previews`() = 0; virtual std::shared_ptr<:ref:`ILiveViewSubscription`> :ref:`LiveView`() = 0; virtual std::shared_ptr<:ref:`IFullImageSubscription`> :ref:`FullImages`() = 0; }; .. _details-class_p1_1_1_camera_sdk_1_1_i_subscription_manager: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Access subscriptions available in the camera. Each :ref:`Camera ` object comes with a pre-initialized set of :ref:`ISubscription ` objects, that allows control of different events posted by the camera. Some subscriptions might not be available on all cameras. Unavailable subscriptions will still be initialized, but :ref:`ISubscription::IsSupported ` will return ``false``. :ref:`Version ` 3.0 Methods ------- .. index:: pair: function; Previews .. _doxid-class_p1_1_1_camera_sdk_1_1_i_subscription_manager_1ad86ce9891ca96be71a9f4cb4ca3ce908: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::shared_ptr<:ref:`IPreviewSubscription`> Previews() = 0 Subscription on receiving image previews when triggering captures. .. index:: pair: function; LiveView .. _doxid-class_p1_1_1_camera_sdk_1_1_i_subscription_manager_1a9b8cd966a78bb25830c7f17c18adccd3: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::shared_ptr<:ref:`ILiveViewSubscription`> LiveView() = 0 Subscription enabling and receiving LiveView image frames. .. index:: pair: function; FullImages .. _doxid-class_p1_1_1_camera_sdk_1_1_i_subscription_manager_1a8d8df51f7fa862911bea469b321f31b0: .. ref-code-block:: cpp :class: doxyrest-title-code-block virtual std::shared_ptr<:ref:`IFullImageSubscription`> FullImages() = 0 Subscription on receiving full IIQ image files when triggering.