Puts the RPC in the map with the given ID and tells the RPC that this region client is handling it @param id The ID to use @param rpc The RPC
(final int id, final HBaseRpc rpc)
| 1463 | * @param rpc The RPC |
| 1464 | */ |
| 1465 | private void inflightTheRpc(final int id, final HBaseRpc rpc) { |
| 1466 | rpcs_inflight.put(id, rpc); |
| 1467 | rpc.rpc_id = id; |
| 1468 | rpc.enqueueTimeout(region_client); |
| 1469 | } |
| 1470 | |
| 1471 | /** |
| 1472 | * Creates a simple GetRequest response with some dummy data and a single |
no test coverage detected