Class AbruptIOTerminationException
This exception signals that a stream has been completed by an onError signal while there was still IO operations in progress.
Implements
Inherited Members
Namespace: Akka.Streams.IO
Assembly: Akka.Streams.dll
Syntax
public sealed class AbruptIOTerminationException : Exception, ISerializable
Constructors
| Edit this page View SourceAbruptIOTerminationException(IOResult, Exception)
Initializes a new instance of the AbruptIOTerminationException class with the result of the IO operation until the error and a reference to the inner exception that is the cause of this exception.
Declaration
public AbruptIOTerminationException(IOResult ioResult, Exception cause)
Parameters
| Type | Name | Description |
|---|---|---|
| IOResult | ioResult | The result of the IO operation until the error |
| Exception | cause | The exception that is the cause of the current exception |
Properties
| Edit this page View SourceIoResult
The number of bytes read/written up until the error
Declaration
public IOResult IoResult { get; }
Property Value
| Type | Description |
|---|---|
| IOResult |
Edit this page