1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2026-03-07 04:08:00 +01:00
Files

7 lines
208 B
C#

namespace Phantom.Common.Data.Agent.Instance.Stop;
public interface IInstanceStopStepExecutor<TResult> {
Task<TResult> Wait(TimeSpan duration);
Task<TResult> SendToStandardInput(IInstanceValue line);
}