Created
September 15, 2014 17:07
-
-
Save flurrydev/a505db5803386b2c6f79 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.flurry.android.v2; | |
public interface FlurryAdStreamListener { | |
public void onFetched(FlurryAdStream adView); | |
public void onFetchFailed(FlurryAdStream adView, FlurryAdError adError); | |
public void onRendered(FlurryAdStream adView); | |
public void onRenderFailed(FlurryAdStream adView, FlurryAdError adError); | |
public void onShowFullscreen(FlurryAdStream adView); | |
public void onCloseFullscreen(FlurryAdStream adView); | |
public void onAppExit(FlurryAdStream adView); | |
public void onClicked(FlurryAdStream adView); | |
public void onVideoCompleted(FlurryAdStream adView); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment