namespace LanLib.UpdateManager.Jobs
{
///
/// Implement this in your or
/// classes to be able to read/write job data.
///
///
/// Job data is always synchronized while no jobs are running, so that it can be safely modified.
///
/// Provider registration/unregistration during data synchronization is supported and
/// will be effective in the same frame.
///
///
///
///
public interface IJobDataSynchronizer
{
void SyncJobData(ref T jobData);
}
}