Akka.Streams.IO.IOResult.IOResult C# (CSharp) Méthode

IOResult() public méthode

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