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

Show file Open project: LorenVS/bacstack Class Usage Examples

Public Methods

Method Description
Abort ( AbortReason reason ) : void

Aborts the underlying transaction

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

Private Methods

Method Description
SetTransaction ( ClientTransaction transaction ) : void

Sets the underlying transaction

Method Details

Abort() public method

Aborts the underlying transaction
public Abort ( AbortReason reason ) : void
reason AbortReason The reason for the abort
return void

FeedAbort() public abstract method

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

FeedComplexAck() public abstract method

Notifies the handle that a new response segment is available
public abstract 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 abstract method

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

FeedReject() public abstract method

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

FeedSimpleAck() public abstract method

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