1 /* 2 * Copyright (c) 2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "upload_timer_info.h" 17 18 namespace OHOS::Request::Upload { OnTrigger()19void UploadTimerInfo::OnTrigger() 20 { 21 if (callBack_ != nullptr) { 22 callBack_(); 23 } 24 } 25 SetCallbackInfo(TimerOutFunc && callBack)26void UploadTimerInfo::SetCallbackInfo(TimerOutFunc &&callBack) 27 { 28 callBack_ = callBack; 29 } 30 SetType(const int & _type)31void UploadTimerInfo::SetType(const int &_type) 32 { 33 type = _type; 34 } 35 SetRepeat(bool _repeat)36void UploadTimerInfo::SetRepeat(bool _repeat) 37 { 38 repeat = _repeat; 39 } SetInterval(const uint64_t & _interval)40void UploadTimerInfo::SetInterval(const uint64_t &_interval) 41 { 42 interval = _interval; 43 } SetWantAgent(std::shared_ptr<OHOS::AbilityRuntime::WantAgent::WantAgent> _wantAgent)44void UploadTimerInfo::SetWantAgent(std::shared_ptr<OHOS::AbilityRuntime::WantAgent::WantAgent> _wantAgent) 45 { 46 wantAgent = _wantAgent; 47 } 48 } // namespace OHOS::Request::Upload