C# Class BACnet.Core.App.Transactions.SimpleAckHandle

Inheritance: ClientTransactionHandle
Afficher le fichier Open project: LorenVS/bacstack

Méthodes publiques

Méthode Description
FeedAbort ( AbortReason reason ) : void

Notifies the handle that the transaction has been aborted

FeedComplexAck ( ComplexAckMessage message, BufferSegment segment ) : void

Notifies the handle that a new response segment is available

FeedError ( ServiceError error ) : void

Notifies the handle that the transaction has errored out

FeedReject ( RejectReason reason ) : void

Notifies the handle that the transaction has been rejected

FeedSimpleAck ( ) : void

Notifies the handle that the transaction has completed and a simple ack has been received

Wait ( ) : void

Waits for the request to complete synchronously

WaitAsync ( ) : Task

Waits for the request to complete asynchronously

Method Details

FeedAbort() public méthode

Notifies the handle that the transaction has been aborted
public FeedAbort ( AbortReason reason ) : void
reason AbortReason The abort reason
Résultat void

FeedComplexAck() public méthode

Notifies the handle that a new response segment is available
public FeedComplexAck ( ComplexAckMessage message, BufferSegment segment ) : void
message BACnet.Core.App.Messages.ComplexAckMessage The complex ack message
segment BufferSegment The response segment
Résultat void

FeedError() public méthode

Notifies the handle that the transaction has errored out
public FeedError ( ServiceError error ) : void
error ServiceError The error that occured
Résultat void

FeedReject() public méthode

Notifies the handle that the transaction has been rejected
public FeedReject ( RejectReason reason ) : void
reason RejectReason The reject reason
Résultat void

FeedSimpleAck() public méthode

Notifies the handle that the transaction has completed and a simple ack has been received
public FeedSimpleAck ( ) : void
Résultat void

Wait() public méthode

Waits for the request to complete synchronously
public Wait ( ) : void
Résultat void

WaitAsync() public méthode

Waits for the request to complete asynchronously
public WaitAsync ( ) : Task
Résultat Task