Package io.quarkus.narayana.jta.runtime
Interface TransactionManagerConfiguration.ObjectStoreConfig
- Enclosing interface:
- TransactionManagerConfiguration
public static interface TransactionManagerConfiguration.ObjectStoreConfig
-
Method Summary
Modifier and TypeMethodDescriptionbooleanWhether to create the table if it does not exist.The name of the datasource where the transaction logs will be stored when using thejdbcobject store.The name of the directory where the transaction logs will be stored when using thefile-systemobject store.booleanWhether to drop the table on startup.The prefix to apply to the table.type()The type of object store.
-
Method Details
-
directory
The name of the directory where the transaction logs will be stored when using thefile-systemobject store. If the value is not absolute then the directory is relative to the user.dir system property. -
type
The type of object store. -
datasource
The name of the datasource where the transaction logs will be stored when using thejdbcobject store.If undefined, it will use the default datasource.
-
createTable
@WithDefault("false") boolean createTable()Whether to create the table if it does not exist. -
dropTable
@WithDefault("false") boolean dropTable()Whether to drop the table on startup. -
tablePrefix
The prefix to apply to the table.
-