Package com.pubmatic.sdk.openwrap.core
Interface POBBidEventListener
-
- All Implemented Interfaces:
public interface POBBidEventListenerInterface definition to notifie bid events
-
-
Method Summary
Modifier and Type Method Description abstract voidonBidReceived(@NonNull() POBBidEvent bidEvent, @NonNull() POBBid bid)Notifies the delegate that bid has been successfully received abstract voidonBidFailed(@NonNull() POBBidEvent bidEvent, @NonNull() POBError error)Notifies the delegate of an error encountered while fetching the bid -
-
Method Detail
-
onBidReceived
abstract void onBidReceived(@NonNull() POBBidEvent bidEvent, @NonNull() POBBid bid)
Notifies the delegate that bid has been successfully received
- Parameters:
bidEvent- reference of POBBidEvent interface.bid- the instance of bid
-
onBidFailed
abstract void onBidFailed(@NonNull() POBBidEvent bidEvent, @NonNull() POBError error)
Notifies the delegate of an error encountered while fetching the bid
- Parameters:
bidEvent- reference of POBBidEvent interface.error- the error of type POBError while fetching bid
-
-
-
-