miniproto.updates.manager.UpdateManager.feed_raw_update
miniproto.updates.manager.UpdateManager.feed_raw_update
Section titled “miniproto.updates.manager.UpdateManager.feed_raw_update”feed_raw_update(raw_update: object) -> NoneOffer a raw Telegram update to the bounded background-processing queue.
Queue-full behavior is controlled by ClientConfig.update_queue_overflow: "raise" propagates asyncio.QueueFull, "drop_newest" discards this update, and "drop_oldest" replaces the oldest queued update.
Parameters:
- raw_update (
object) – Decoded Telegram update or update-container object to enqueue.