C# Class Akka.Streams.IO.IOResult

Holds a result of an IO operation.
Datei anzeigen Open project: rogeralsing/akka.net Class Usage Examples

Public Properties

Property Type Description
Count long

Public Methods

Method Description
IOResult ( long count, Result status ) : System

Creates a new IOResult.

Method Details

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

Property Details

Count public_oe property

Numeric value depending on context, for example IO operations performed or bytes processed.
public long Count
return long