using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Wabbajack.Common.CSP { public interface IWritePort : ICloseable { (AsyncResult, bool) Put(TIn val, Handler> handler); ValueTask Put(TIn val, bool onCaller = true); } }