From 718fa929b9a8701f0b3640b763102adf3ebb5b05 Mon Sep 17 00:00:00 2001 From: Evgeniy Blinov Date: Thu, 18 Jul 2024 22:26:14 +0300 Subject: [PATCH] readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 5cce1b3..4cc57de 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,7 @@ This library offers the easiest way to run regular tasks. Just give it a functio - [**Quick start**](#quick-start) - [**Why?**](#why) +- [**Metronomes are disposable**](#metronomes-are-disposable) - [**Logging**](#logging) - [**Error escaping**](#error-escaping) - [**Working with Cancellation Tokens**](#working-with-cancellation-tokens) @@ -69,6 +70,8 @@ When we write programs, we also sometimes want some action to be performed regul At the same time, it may be important to you that even if in some cases the function does not work well and raises exceptions, in general the metronome continues to work, and after a certain time it will try to call this function again, and will not break at the first exception. After all, it would be strange if your real metronome went silent when you made a mistake in the rhythm that you are tapping on the drum, right? You may also want the errors that have occurred not to be lost, but to be recorded in your log. This library also provides all these amenities. +## Metronomes are disposable + ## Logging