Execute the operation(s) in a single BITFIELD command. The return value is a list of values corresponding to each operation. If the client used to create this instance was a pipeline, the list of values will be present within the pipeline's execute.
(self)
| 2579 | return cmd |
| 2580 | |
| 2581 | def execute(self) -> ResponseT: |
| 2582 | """ |
| 2583 | Execute the operation(s) in a single BITFIELD command. The return value |
| 2584 | is a list of values corresponding to each operation. If the client |
| 2585 | used to create this instance was a pipeline, the list of values |
| 2586 | will be present within the pipeline's execute. |
| 2587 | """ |
| 2588 | command = self.command |
| 2589 | self.reset() |
| 2590 | return self.client.execute_command(*command) |
| 2591 | |
| 2592 | |
| 2593 | class DataPersistOptions(Enum): |
no test coverage detected