Back to project page mobile-connector-sdk-android.
The source code is released under:
Apache License
If you think the Android project mobile-connector-sdk-android 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.silverpop.engage.augmentation; /*from w w w . ja v a 2 s . c om*/ import com.silverpop.engage.domain.EngageEvent; import com.silverpop.engage.domain.UBF; /** * Created by jeremydyer on 6/3/14. */ public interface UBFAugmentationService { /** * Number of Augmentor plugins configured under this service. * @return */ public int augmentorsCount(); /** * Augments a UBF object by processing it through all of the "plugins" configured to run * in the SDK environment. * * @param ubfEvent * UBF event object. * * @param engageEvent * EngageEvent object * * @param expirationSeconds * Seconds before the augmentation process times out and the * event is sent without the Augmented data. */ public void augmentUBFEvent(UBF ubfEvent, EngageEvent engageEvent, long expirationSeconds); }