public interface TransactionListListener
Modifier and Type | Method and Description |
---|---|
void |
downloadTransactionListFailed(Error error)
Gets called when downloading list of transactions fails.
|
void |
downloadTransactionListSucceeded(Transaction.TransactionFilter type,
int startIndex,
ArrayList<Transaction> transactions,
int transactionsCount)
Gets called when downloading list of transactions succeeds.
|
void downloadTransactionListSucceeded(Transaction.TransactionFilter type, int startIndex, ArrayList<Transaction> transactions, int transactionsCount)
type
- The filter chosen to download transactions.startIndex
- Starting index of the transaction list.transactions
- List of downloaded transactions.transactionsCount
- Number of all transactions available on server.void downloadTransactionListFailed(Error error)
error
- The error occurred while trying to download the list.