Class PublishingRecordsException
Inheritance
PublishingRecordsException
Assembly: Akka.Streams.Kinesis.dll
Syntax
public class PublishingRecordsException : Exception, ISerializable
Constructors
|
Improve this Doc
View Source
PublishingRecordsException(Int32, IEnumerable<(PutRecordsRequestEntry, PutRecordsResultEntry)>)
Declaration
public PublishingRecordsException(int attempt, IEnumerable<(PutRecordsRequestEntry, PutRecordsResultEntry)> errors)
Parameters
Type |
Name |
Description |
Int32 |
attempt |
|
IEnumerable<System.ValueTuple<Amazon.Kinesis.Model.PutRecordsRequestEntry, Amazon.Kinesis.Model.PutRecordsResultEntry>> |
errors |
|
Properties
|
Improve this Doc
View Source
Attempt
Declaration
public int Attempt { get; }
Property Value
|
Improve this Doc
View Source
Errors
Declaration
public IEnumerable<(PutRecordsRequestEntry, PutRecordsResultEntry)> Errors { get; }
Property Value
Type |
Description |
IEnumerable<System.ValueTuple<Amazon.Kinesis.Model.PutRecordsRequestEntry, Amazon.Kinesis.Model.PutRecordsResultEntry>> |
|
Implements