(TransactionContext tcx)
| 87 | |
| 88 | // Peek--assumes min priority queue. |
| 89 | public static Object peek(TransactionContext tcx){ |
| 90 | return peek(tcx,false); |
| 91 | } |
| 92 | |
| 93 | // Peek--allows for either max or min priority queue. |
| 94 | public static Object peek(TransactionContext tcx, final boolean max){ |