1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #pragma once
- #include <Framework/HttpRequestJobConfig.h>
- namespace AWSCore
- {
- /// Provides configuration needed by service jobs.
- class IServiceJobConfig
- : public virtual IHttpRequestJobConfig
- {
- };
- // warning C4250: 'AWSCore::ServiceJobConfig' : inherits 'AWSCore::AwsApiJobConfig::AWSCore::AwsApiJobConfig::GetJobContext' via dominance
- // Thanks to http://stackoverflow.com/questions/11965596/diamond-inheritance-scenario-compiles-fine-in-g-but-produces-warnings-errors for the explanation
- // This is the expected and desired behavior. The warning is superfluous.
- AZ_PUSH_DISABLE_WARNING(4250, "-Wunknown-warning-option")
- /// Provides service job configuration using settings properties.
- class ServiceJobConfig
- : public HttpRequestJobConfig
- , public virtual IServiceJobConfig
- {
- public:
- AZ_CLASS_ALLOCATOR(ServiceJobConfig, AZ::SystemAllocator);
- using InitializerFunction = AZStd::function<void(ServiceJobConfig& config)>;
- /// Initialize an ServiceJobConfig object.
- ///
- /// \param defaultConfig - the config object that provides values when
- /// no override has been set in this object. The default is nullptr, which
- /// will cause a default value to be used.
- ///
- /// \param initializer - a function called to initialize this object.
- /// This simplifies the initialization of static instances. The default
- /// value is nullptr, in which case no initializer will be called.
- ServiceJobConfig(AwsApiJobConfig* defaultConfig = nullptr, InitializerFunction initializer = nullptr)
- : HttpRequestJobConfig{ defaultConfig }
- {
- if (initializer)
- {
- initializer(*this);
- }
- }
- void ApplySettings() override;
- };
- AZ_POP_DISABLE_WARNING
- } // namespace AWSCore
|