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

Afficher le fichier Open project: LorenVS/bacstack Class Usage Examples

Méthodes publiques

Méthode 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

Méthode Description
SetTransaction ( ClientTransaction transaction ) : void

Sets the underlying transaction

Method Details

Abort() public méthode

Aborts the underlying transaction
public Abort ( AbortReason reason ) : void
reason AbortReason The reason for the abort
Résultat void

FeedAbort() public abstract méthode

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

FeedComplexAck() public abstract méthode

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
Résultat void

FeedError() public abstract méthode

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

FeedReject() public abstract méthode

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

FeedSimpleAck() public abstract méthode

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