.. index:: 
  !DocumentAuthenticator.temporalWindowSize Property

.. _id3_document_document_authenticator_temporal_window_size_class_member:

===============================================================================
DocumentAuthenticator.temporalWindowSize Property
===============================================================================

Module: :ref:`DocumentAuthenticator<id3_document_document_authenticator_class>`

Type: int

Definition
----------

Size of the FIFO frame buffer, used for processing.


.. tab-set::

  .. tab-item:: Python
    :sync: Python

    .. code:: Python

      temporal_window_size: int


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: Dart
    :sync: Dart

    .. code:: Dart

      int get temporalWindowSize => getTemporalWindowSize();
      set temporalWindowSize(int value) => setTemporalWindowSize(value);


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: C#
    :sync: C#

    .. code:: C#

      public int temporalWindowSize
      {
          get => GettemporalWindowSize();
          set => SettemporalWindowSize(ref value);
      }


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: Java
    :sync: Java

    .. code:: Java

      public int getTemporalWindowSize() throws DocumentException
      public void setTemporalWindowSize(int temporalWindowSize) throws DocumentException


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: Swift
    :sync: Swift

    .. code:: Swift

      public var temporalWindowSize: Int
          get {
              return Int(try! getTemporalWindowSize())
          }
      }


    **Exceptions**

      .. line-block::

        :ref:`DocumentException<id3_document_document_exception>`
        An error has occurred during Document Library execution.

  .. tab-item:: C
    :sync: C

    .. code:: C

      int id3DocumentAuthenticator_GetTemporalWindowSize (ID3_DOCUMENT_AUTHENTICATOR hDocumentAuthenticator, int * temporalWindowSize)
      int id3DocumentAuthenticator_SetTemporalWindowSize (ID3_DOCUMENT_AUTHENTICATOR hDocumentAuthenticator, int temporalWindowSize)

    **Returns**
   
      .. line-block::

        ``int``
        An error code.
        See :ref:`id3DocumentError<id3_document_document_error_enum>` file for the list of possible error codes.

