Writes the current store to disk. @param name name of store. @param info input info @throws QueryException query exception
(final String name, final InputInfo info)
| 175 | * @throws QueryException query exception |
| 176 | */ |
| 177 | public synchronized void write(final String name, final InputInfo info) throws QueryException { |
| 178 | try { |
| 179 | writeStore(name, true); |
| 180 | } catch(final IOException ex) { |
| 181 | throw STORE_IO_X.get(info, ex); |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * Deletes a store. |
no test coverage detected