()
| 102 | } |
| 103 | |
| 104 | public boolean run() { |
| 105 | try { |
| 106 | if (!circuitBreaker.checkIfTripped()) { |
| 107 | GeoHashNative.latestByAndFilterPrefix( |
| 108 | frameMemoryPool, |
| 109 | keyBaseAddress, |
| 110 | keysMemorySize, |
| 111 | valueBaseAddress, |
| 112 | valuesMemorySize, |
| 113 | argsAddress, |
| 114 | unIndexedNullCount, |
| 115 | rowHi, |
| 116 | rowLo, |
| 117 | frameIndex, |
| 118 | valueBlockCapacity, |
| 119 | hashColumnIndex, |
| 120 | hashColumnType, |
| 121 | prefixesAddress, |
| 122 | prefixesCount |
| 123 | ); |
| 124 | } |
| 125 | doneLatch.countDown(); |
| 126 | return true; |
| 127 | } finally { |
| 128 | frameMemoryPool.close(); |
| 129 | } |
| 130 | } |
| 131 | } |
no test coverage detected