Interface AsyncTransactionCreatorManager
-
- All Superinterfaces:
TransactionManager<AsyncTransactionCreatorManager>
,WriteTransactionManager<AsyncTransactionCreatorManager>
public interface AsyncTransactionCreatorManager extends WriteTransactionManager<AsyncTransactionCreatorManager>
Transaction manager dedicated to operations performed asynchronously. This manager prepares commands using a control SAM, and the result is available as a string to be imported and processed by aAsyncTransactionExecutorManager
.An instance of this interface can be obtained via the method
LegacySamApiFactory.createAsyncTransactionCreatorManager(String, SecuritySetting)
.- Since:
- 0.2.0
- See Also:
AsyncTransactionExecutorManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
exportCommands()
Returns a string containing the prepared commands to be executed by a target SAM.-
Methods inherited from interface org.eclipse.keypop.calypso.crypto.legacysam.transaction.TransactionManager
processCommands
-
Methods inherited from interface org.eclipse.keypop.calypso.crypto.legacysam.transaction.WriteTransactionManager
prepareWriteCounterCeiling, prepareWriteCounterConfiguration
-
-
-
-
Method Detail
-
exportCommands
java.lang.String exportCommands()
Returns a string containing the prepared commands to be executed by a target SAM.These commands can later be imported and processed by a
AsyncTransactionExecutorManager
.- Returns:
- A not empty string.
- Since:
- 0.2.0
-
-