26.09.2008, 20:05 | #1 |
Участник
|
Run Class Method Pattern
Источник: http://alexvoy.blogspot.com/2008/09/...d-pattern.html
============== just to keep in mind a pattern for Run method recommended by Best Practices for classes X++: public void run() { #OCCRetryCount ; try { ttsbegin; this.adjustSetupTime(); ttscommit; this.prodCostEstimation(); } catch (Exception::Deadlock) { retry; } catch (Exception::UpdateConflict) { if (appl.ttsLevel() == 0) { if (xSession::currentRetryCount() >= #RetryNum) { throw Exception::UpdateConflictNotRecovered; } else { retry; } } else { throw Exception::UpdateConflict; } } }
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|
|
|