Moves a DataBlock to a new location @param db The DataBlock whose data should be moved @param block The Block to move the data to @return The new DataBlock
(DataBlock db, Block block)
| 225 | * @return The new DataBlock |
| 226 | */ |
| 227 | public DataBlock move(DataBlock db, Block block) { |
| 228 | return unwrap(moveAsync(db, block)); |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Loads the data for a chunk asynchronously |