// // ASConfigurationDelegate.h // Texture // // Copyright (c) Pinterest, Inc. All rights reserved. // Licensed under Apache 2.0: http://www.apache.org/licenses/LICENSE-2.0 // #import #import NS_ASSUME_NONNULL_BEGIN /** * Used to communicate configuration-related events to the client. */ @protocol ASConfigurationDelegate /** * Texture performed its first behavior related to the feature(s). * This can be useful for tracking the impact of the behavior (A/B testing). */ - (void)textureDidActivateExperimentalFeatures:(ASExperimentalFeatures)features; @optional /** * Texture framework initialized. This method is called synchronously * on the main thread from ASInitializeFrameworkMainThread if you defined * AS_INITIALIZE_FRAMEWORK_MANUALLY or from the default initialization point * (currently +load) otherwise. */ - (void)textureDidInitialize; @end NS_ASSUME_NONNULL_END