SimpleUpdateProcessor

class telegram.ext.SimpleUpdateProcessor(max_concurrent_updates)[source]

Bases: telegram.ext.BaseUpdateProcessor

Instance of telegram.ext.BaseUpdateProcessor that immediately awaits the coroutine, i.e. does not apply any additional processing. This is used by default when telegram.ext.ApplicationBuilder.concurrent_updates is int.

New in version 20.4.

async do_process_update(update, coroutine)[source]

Immediately awaits the coroutine, i.e. does not apply any additional processing.

Parameters:
async initialize()[source]

Does nothing.

async shutdown()[source]

Does nothing.