Back to project page tapad-android-sdk.
The source code is released under:
MIT License
If you think the Android project tapad-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tapad.adserving; //www. jav a 2 s . com /** * Default implementation of the AdServingService. */ class AdServingServiceImpl implements AdServingService { private AdRequestDispatcher dispatcher; AdServingServiceImpl(AdRequestDispatcher dispatcher) { this.dispatcher = dispatcher; } public void requestAd(AdRequest adRequest) { dispatcher.dispatch(adRequest); } }