Interface TransactionManagerListener
-
- All Known Implementing Classes:
AdViewManager
public interface TransactionManagerListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFetchingCompleted(Transaction transaction)Is called when TransactionManager has finished the fetching process.voidonFetchingFailed(AdException exception)In case of failure, the error should be not null and contains the description of the issue
-
-
-
Method Detail
-
onFetchingCompleted
void onFetchingCompleted(Transaction transaction)
Is called when TransactionManager has finished the fetching process. In case of success, the transaction represents the loaded transaction.- Parameters:
transaction- successful transaction
-
onFetchingFailed
void onFetchingFailed(AdException exception)
In case of failure, the error should be not null and contains the description of the issue- Parameters:
exception- used to inform the listener in case something is wrong
-
-