timer_B method
void
timer_B()
Implementation
void timer_B() {
logger.debug('Timer B expired for transaction $id');
if (state == TransactionState.CALLING) {
stateChanged(TransactionState.TERMINATED);
ua!.destroyTransaction(this);
_eventHandlers.emit(EventOnRequestTimeout());
}
}