using System.Threading; namespace Robust.Shared.Threading; /// /// Implement for code that needs to be runnable on a threadpool. /// public interface IRobustJob { void Execute(); }