1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2026-05-04 09:03:11 +02:00
Files
Minecraft-Phantom-Panel/Common/Phantom.Common.Data.Agent/Instance/Stop/IInstanceStopStepExecutor.cs

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);
}