Throws an exception if scanning already started. @throws IllegalStateException if scanning already started.
()
| 1165 | * @throws IllegalStateException if scanning already started. |
| 1166 | */ |
| 1167 | private void checkScanningNotStarted() { |
| 1168 | if (region != null) { |
| 1169 | throw new IllegalStateException("scanning already started"); |
| 1170 | } |
| 1171 | } |
| 1172 | |
| 1173 | /** |
| 1174 | * Wraps the RPC response for scan requests from HBase 0.95+. |
no outgoing calls
no test coverage detected