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