(TransactionContext tcx)
| 68 | |
| 69 | // Pop--assumes min priority queue.. |
| 70 | public static Object pop(TransactionContext tcx){ |
| 71 | return pop(tcx,false); |
| 72 | } |
| 73 | |
| 74 | // Pop--allows for either max or min priority queue. |
| 75 | public static Object pop(TransactionContext tcx, final boolean max){ |