WIP: Make the UpdateRecevier not wait for each handler #4

Closed
XSilverTH wants to merge 3 commits from parallelhandler into master
Showing only changes of commit 00842216a1 - Show all commits
+3 -3
View File
@@ -6,12 +6,12 @@ using Telegram.Bot.Types;
namespace Telegrator.Polling namespace Telegrator.Polling
{ {
/// <summary> /// <summary>
/// Reactive update receiver for polling updates from Telegram. /// Reactive implementation of <see cref="IUpdateReceiver"/> for polling updates from Telegram.
/// Provides custom update receiving logic with error handling and configuration options. /// /// Provides custom update receiving logic with error handling and configuration options.
/// </summary> /// </summary>
/// <param name="client">The Telegram bot client for making API requests.</param> /// <param name="client">The Telegram bot client for making API requests.</param>
/// <param name="options">Optional receiver options for configuring update polling behavior.</param> /// <param name="options">Optional receiver options for configuring update polling behavior.</param>
public class ReactiveUpdateReceiver(ITelegramBotClient client, ReceiverOptions? options) public class ReactiveUpdateReceiver(ITelegramBotClient client, ReceiverOptions? options) : IUpdateReceiver
{ {
/// <summary> /// <summary>
/// Gets the receiver options for configuring update polling behavior. /// Gets the receiver options for configuring update polling behavior.