U
    ç;ãgö  ã                   @   s   d dl Z G dd„ dƒZdS )é    Nc                   @   s   e Zd Zddedœdd„ZdS )ÚRestartTzpyrogram.Client)ÚselfÚblockc                 ƒ   s0   ‡ fdd„}|r|ƒ I dH  nˆ j  |ƒ ¡ ˆ S )ae  Restart the Client.

        This method will first call :meth:`~pyrogram.Client.stop` and then :meth:`~pyrogram.Client.start` in a row in
        order to restart a client using a single method.

        Parameters:
            block (``bool``, *optional*):
                Blocks the code execution until the client has been restarted. It is useful with ``block=False`` in case
                you want to restart the own client within an handler in order not to cause a deadlock.
                Defaults to True.

        Returns:
            :obj:`~pyrogram.Client`: The restarted client itself.

        Raises:
            ConnectionError: In case you try to restart a stopped Client.

        Example:
            .. code-block:: python

                from pyrogram import Client

                app = Client("my_account")


                async def main():
                    await app.start()
                    ...  # Invoke API methods
                    await app.restart()
                    ...  # Invoke other API methods
                    await app.stop()


                app.run(main())
        c                   “   s    ˆ   ¡ I d H  ˆ  ¡ I d H  d S )N)ÚstopÚstart© ©r   r   úb/opt/bot/vods_filmes/script/venv/lib/python3.8/site-packages/pyrogram/methods/utilities/restart.pyÚdo_it?   s    zRestart.restart.<locals>.do_itN)ÚloopZcreate_task)r   r   r
   r   r   r	   Úrestart   s
    (zRestart.restartN)T)Ú__name__Ú
__module__Ú__qualname__Úboolr   r   r   r   r	   r      s
    þþr   )Zpyrogramr   r   r   r   r	   Ú<module>   s   