C# Класс BACnet.Core.App.Transactions.ClientTransactionHandle

Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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

Приватные методы

Метод Описание
SetTransaction ( ClientTransaction transaction ) : void

Sets the underlying transaction

Описание методов

Abort() публичный метод

Aborts the underlying transaction
public Abort ( AbortReason reason ) : void
reason AbortReason The reason for the abort
Результат void

FeedAbort() публичный абстрактный метод

Notifies the handle that the transaction has been aborted
public abstract FeedAbort ( AbortReason reason ) : void
reason AbortReason The abort reason
Результат void

FeedComplexAck() публичный абстрактный метод

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
Результат void

FeedError() публичный абстрактный метод

Notifies the handle that the transaction has errored out
public abstract FeedError ( ServiceError error ) : void
error ServiceError The error that occured
Результат void

FeedReject() публичный абстрактный метод

Notifies the handle that the transaction has been rejected
public abstract FeedReject ( RejectReason reason ) : void
reason RejectReason The reject reason
Результат void

FeedSimpleAck() публичный абстрактный метод

Notifies the handle that the transaction has completed and a simple ack has been received
public abstract FeedSimpleAck ( ) : void
Результат void