pub(super) trait PostMigrator<BS: Blockstore>: Send + Sync {
    // Required method
    fn post_migrate_state(
        &self,
        store: &BS,
        actors_out: &mut StateTree<BS>,
    ) -> Result<()>;
}
Expand description

Trait that defines the interface for actor migration job to be executed after the state migration.

Required Methods§

source

fn post_migrate_state( &self, store: &BS, actors_out: &mut StateTree<BS>, ) -> Result<()>

Implementors§