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)
| 144 | """ |
| 145 | |
| 146 | def load_bytecode(self, bucket): |
| 147 | """Subclasses have to override this method to load bytecode into a |
| 148 | bucket. If they are not able to find code in the cache for the |
| 149 | bucket, it must not do anything. |
| 150 | """ |
| 151 | raise NotImplementedError() |
| 152 | |
| 153 | def dump_bytecode(self, bucket): |
| 154 | """Subclasses have to override this method to write the bytecode |