Package com.pubmatic.sdk.common.base
Interface POBResponseParsing.POBResponseParserListener
-
- All Implemented Interfaces:
public interface POBResponseParsing.POBResponseParserListener<T extends POBAdDescriptor>Listener class to get the callback after parsing
-
-
Method Summary
Modifier and Type Method Description abstract voidparserOnSuccess(@NonNull() POBAdResponse<T> adResponse)Notifies with the parsed object when the parsing is success abstract voidparserOnError(@NonNull() POBError error)Notifies with the error object when the parsing is failure -
-
Method Detail
-
parserOnSuccess
abstract void parserOnSuccess(@NonNull() POBAdResponse<T> adResponse)
Notifies with the parsed object when the parsing is success
- Parameters:
adResponse- Instance of the response class
-
parserOnError
abstract void parserOnError(@NonNull() POBError error)
Notifies with the error object when the parsing is failure
- Parameters:
error- Error instance
-
-
-
-