Package com.avoka.fc.core.service
Interface ITransactionHistoryCreationService
-
- All Known Implementing Classes:
TransactionHistoryCreationService
public interface ITransactionHistoryCreationService
Provides the interface for services who create transaction history records.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
createTransactionHistory(Submission submission)
Deprecated.int
performHistoryCreation(int fetchLimit)
Create submission history records from the completed and abandoned submissions, and return the number created.
-
-
-
Method Detail
-
createTransactionHistory
@Deprecated void createTransactionHistory(Submission submission)
Deprecated.Create a transaction history record for the given submission.- Parameters:
submission
- the submission record to create the transaction history from (required)- Since:
- 4.3.3
-
performHistoryCreation
int performHistoryCreation(int fetchLimit)
Create submission history records from the completed and abandoned submissions, and return the number created.- Parameters:
fetchLimit
- the number of records to process- Returns:
- the number of submission history records created
-
-