Akka.Streams.IO.IOResult.IOResult C# (CSharp) Метод

IOResult() публичный Метод

Creates a new IOResult.
public IOResult ( long count, Result status ) : System
count long Numeric value depending on context, for example IO operations performed or bytes processed.
status Result Status of the result. Can be either or an exception.
Результат System
        public IOResult(long count, Result<NotUsed> status)
        {
            Count = count;
            _status = status;
        }
IOResult