Trait ItemLazy
pub trait ItemLazy: Send {
type ItemSync: Send;
// Required method
fn sync(self) -> Self::ItemSync;
}
Expand description
Items that are lazy are not ready to be processed by metrics.
We want to sync them on a different thread to avoid blocking training.