timer_M method
void
timer_M()
Implementation
void timer_M() {
logger.debug('Timer M expired for transaction $id');
if (state == TransactionState.ACCEPTED) {
clearTimeout(B);
stateChanged(TransactionState.TERMINATED);
ua!.destroyTransaction(this);
}
}