> For the complete documentation index, see [llms.txt](https://prethink.gitbook.io/prtelegrambot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prethink.gitbook.io/prtelegrambot/ru/api/interfeisy/iprupdatehandler.md).

# IPRUpdateHandler

```csharp
using Telegram.Bot.Polling;

namespace PRTelegramBot.Interfaces
{
    /// <summary>
    /// Обработчик обновлений telegram.
    /// </summary>
    public interface IPRUpdateHandler : IUpdateHandler
    {
        /// <summary>
        /// Горячая перезагрузка.
        /// </summary>
        public void HotReload();
    }
}
```
