Skip to content

PushDeliveryPassOutcome Class

What one push delivery pass achieved.

C#
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.

C#
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.

C#
public int Delivered { get; init; }

Property Value

System.Int32

PushDeliveryPassOutcome.Rejected Property

SETs the receiver judged invalid, dropped from the queue as terminal (RFC 8935 Section 2.3).

C#
public int Rejected { get; init; }

Property Value

System.Int32