PushDeliveryPassOutcome Class
What one push delivery pass achieved.
public sealed record PushDeliveryPassOutcome : System.IEquatable<Abblix.SharedSignals.Transmitter.PushDeliveryPassOutcome>Inheritance System.Object → PushDeliveryPassOutcome
Implements System.IEquatable<PushDeliveryPassOutcome>
Constructors
PushDeliveryPassOutcome(int, int) Constructor
What one push delivery pass achieved.
public PushDeliveryPassOutcome(int Delivered, int Rejected);Parameters
Delivered System.Int32
SETs the receiver accepted and the queue released.
Rejected System.Int32
SETs the receiver judged invalid, dropped from the queue as terminal (RFC 8935 Section 2.3).
Properties
PushDeliveryPassOutcome.Delivered Property
SETs the receiver accepted and the queue released.
public int Delivered { get; init; }Property Value
PushDeliveryPassOutcome.Rejected Property
SETs the receiver judged invalid, dropped from the queue as terminal (RFC 8935 Section 2.3).
public int Rejected { get; init; }