Subclasses have to override this method to load bytecode into a bucket. If they are not able to find code in the cache for the bucket, it must not do anything.
(self, bucket: Bucket)
| 128 | """ |
| 129 | |
| 130 | def load_bytecode(self, bucket: Bucket) -> None: |
| 131 | """Subclasses have to override this method to load bytecode into a |
| 132 | bucket. If they are not able to find code in the cache for the |
| 133 | bucket, it must not do anything. |
| 134 | """ |
| 135 | raise NotImplementedError() |
| 136 | |
| 137 | def dump_bytecode(self, bucket: Bucket) -> None: |
| 138 | """Subclasses have to override this method to write the bytecode |