Package com.pubmatic.sdk.common
Interface POBAdServerSignalingEventListener
-
- All Implemented Interfaces:
public interface POBAdServerSignalingEventListenerInterface used for communication between event handlers and adLoader class
-
-
Method Summary
Modifier and Type Method Description abstract voidonOpenWrapPartnerWin(@Nullable() String bidId)Call this when the ad server SDK signals about partner bid win with bid id. abstract voidonAdServerWin()Publisher should call this method to notify the OpenWrap SDK about ad server SDK renders its own ad abstract voidonFailed(@NonNull() POBError error)Handler should call this method to notify the OpenWrap SDK about any kind of load time error abstract POBBidsProvidergetBidsProvider()Returns bids provider -
-
Method Detail
-
onOpenWrapPartnerWin
abstract void onOpenWrapPartnerWin(@Nullable() String bidId)
Call this when the ad server SDK signals about partner bid win with bid id.
- Parameters:
bidId- Winning partner bid id
-
onAdServerWin
abstract void onAdServerWin()
Publisher should call this method to notify the OpenWrap SDK about ad server SDK renders its own ad
-
onFailed
abstract void onFailed(@NonNull() POBError error)
Handler should call this method to notify the OpenWrap SDK about any kind of load time error
- Parameters:
error- Error object with error details from ad server SDK
-
getBidsProvider
@Nullable() abstract POBBidsProvider getBidsProvider()
Returns bids provider
- Returns:
bids provider
-
-
-
-