getResults returns the total counts of matched and unmatched transactions processed during reconciliation. Returns: - int: The count of matched transactions. - int: The count of unmatched transactions.
()
| 522 | // - int: The count of matched transactions. |
| 523 | // - int: The count of unmatched transactions. |
| 524 | func (tp *transactionProcessor) getResults() (int, int) { |
| 525 | return tp.matches, tp.unmatched |
| 526 | } |
| 527 | |
| 528 | // processTransactions processes the transactions in batches, applying the reconciliation logic for each transaction. |
| 529 | // Parameters: |
no outgoing calls
no test coverage detected