Creates a new EmptyTable with specified partition number.
(mut self, partitions: usize)
| 48 | |
| 49 | /// Creates a new EmptyTable with specified partition number. |
| 50 | pub fn with_partitions(mut self, partitions: usize) -> Self { |
| 51 | self.partitions = partitions; |
| 52 | self |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | #[async_trait] |
no outgoing calls