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

Inheritance: ClientTransactionHandle
Datei anzeigen Open project: LorenVS/bacstack

Public Methods

Method 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 method

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

FeedComplexAck() public method

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
return void

FeedError() public method

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

FeedReject() public method

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

FeedSimpleAck() public method

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

Wait() public method

Waits for the request to complete synchronously
public Wait ( ) : void
return void

WaitAsync() public method

Waits for the request to complete asynchronously
public WaitAsync ( ) : Task
return Task