This simply computes the next transaction by randomly selecting one based on the weights of this phase. @return
()
| 154 | * @return |
| 155 | */ |
| 156 | public int chooseTransaction() { |
| 157 | return chooseTransaction(false); |
| 158 | } |
| 159 | |
| 160 | public int chooseTransaction(boolean isColdQuery) { |
| 161 | if (isDisabled()) { |
no test coverage detected