:class:`IntegralCollection` =========================== .. py:class:: ansys.dpf.core.collection_base.IntegralCollection(server=None, collection=None) Bases: :py:obj:`CollectionBase` Creates a collection of integral type with a list. The collection of integral is the equivalent of an array of data sent server side. It can be used to efficiently stream large data to the server. :param list: list to transfer server side :type list: list[float], list[int], numpy.array .. rubric:: Notes Used by default by the ``'Operator'`` and the``'Workflow'`` when a list is connected or returned. .. py:currentmodule:: IntegralCollection Overview -------- .. tab-set:: .. tab-item:: Abstract methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~create_subtype` - Must be implemented by subclasses. .. tab-item:: Methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~get_integral_entries` - Must be implemented by subclasses. Import detail ------------- .. code-block:: python from ansys.dpf.core.collection_base import IntegralCollection Method detail ------------- .. py:method:: create_subtype(obj_by_copy) :abstractmethod: Must be implemented by subclasses. .. py:method:: get_integral_entries() Must be implemented by subclasses.