+ * Returns the transaction id
+ *
* @param timeoutMs timeout in milliseconds
- * @return transaction id
*/
record OpenTransaction(long timeoutMs) implements RocksDBAPICommand
+ * Returns true if committed, if false, you should try again
*
* @param transactionId transaction id to close
* @param commit true to commit the transaction, false to rollback it
- * @return true if committed, if false, you should try again
*/
record CloseTransaction(long transactionId, boolean commit) implements RocksDBAPICommand
+ * Returns the column id
+ *
* @param name column name
* @param schema column key-value schema
- * @return column id
*/
record CreateColumn(String name, @NotNull ColumnSchema schema) implements RocksDBAPICommand
+ * Returns the column id
+ *
* @param name column name
- * @return column id
*/
record GetColumnId(@NotNull String name) implements RocksDBAPICommand
+ * Returns the iterator id
+ *
* @param arena arena
* @param transactionId transaction id, or 0
* @param columnId column id
@@ -292,7 +293,6 @@ public sealed interface RocksDBAPICommand