| 5491 | } |
| 5492 | |
| 5493 | ITransaction* YTransaction::join(CheckStatusWrapper* status, ITransaction* transaction) |
| 5494 | { |
| 5495 | try |
| 5496 | { |
| 5497 | YEntry<YTransaction> entry(status, this); |
| 5498 | |
| 5499 | return DtcInterfacePtr()->join(status, this, transaction); |
| 5500 | } |
| 5501 | catch (const Exception& ex) |
| 5502 | { |
| 5503 | ex.stuffException(status); |
| 5504 | } |
| 5505 | |
| 5506 | return NULL; |
| 5507 | } |
| 5508 | |
| 5509 | ITransaction* YTransaction::validate(CheckStatusWrapper* status, IAttachment* testAtt) |
| 5510 | { |
nothing calls this directly
no test coverage detected