// // MASignalProvider.h // AppLovinSDK // // Created by Thomas So on 8/10/18. // Copyright © 2019 AppLovin Corporation. All rights reserved. // #import #import NS_ASSUME_NONNULL_BEGIN /** * This protocol describes a mediation adapter that provides bid signals. */ @protocol MASignalProvider /** * Retrieve the signal that should be passed up to the server. * * @param parameters Parameters that should be used to retrieve the signal. * @param delegate Delegate that must be notified when signal collection has completed (or failed). */ - (void)collectSignalWithParameters:(id)parameters andNotify:(id)delegate; @end NS_ASSUME_NONNULL_END