Skip to content

Standalone Transaction (deprecated)

Home / python / standalone_transaction Note - The Transaction class will be dperecated starting version 2.0.0, and will be replaced with the Batch class.

glide.async_commands.batch.Transaction

Bases: Batch

Source code in glide/async_commands/batch.py
5587
5588
5589
5590
@deprecated("Use Batch(is_atomic=True) instead.")
class Transaction(Batch):
    def __init__(self):
        super().__init__(is_atomic=True)