Interface IAcknowledgmentCallback
General abstraction over acknowlegements
Namespace: Steeltoe.Integration.Acks
Assembly: Steeltoe.Integration.Abstractions.dll
Syntax
public interface IAcknowledgmentCallback
Properties
| Edit this page View SourceIsAcknowledged
Gets or sets a value indicating whether the ack has been processed by the user so that the framework can auto-ack if needed.
Declaration
bool IsAcknowledged { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsAutoAck
Gets or sets a value indicating whether return true if this acknowledgment supports auto ack when it has not been already ack'd by the application.
Declaration
bool IsAutoAck { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
| Edit this page View SourceAcknowledge(Status)
Acknowledge the message.
Declaration
void Acknowledge(Status status)
Parameters
Type | Name | Description |
---|---|---|
Status | status | true if the message is already acked |