Akka.Streams.IO.IOResult.IOResult C# (CSharp) Method

IOResult() public method

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.
return System
        public IOResult(long count, Result<NotUsed> status)
        {
            Count = count;
            _status = status;
        }
IOResult