/* * Copyright (c) 2023 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef DISTRIBUTED_OBJECT_SERVICE_H #define DISTRIBUTED_OBJECT_SERVICE_H #include #include #include #include "distributeddata_object_store_ipc_interface_code.h" #include "object_types.h" namespace OHOS::DistributedObject { class ObjectService { public: virtual int32_t ObjectStoreSave(const std::string &bundleName, const std::string &sessionId, const std::string &deviceId, const std::map> &data, sptr callback) = 0; virtual int32_t ObjectStoreRetrieve( const std::string &bundleName, const std::string &sessionId, sptr callback) = 0; virtual int32_t ObjectStoreRevokeSave( const std::string &bundleName, const std::string &sessionId, sptr callback) = 0; virtual int32_t RegisterDataObserver( const std::string &bundleName, const std::string &sessionId, sptr callback) = 0; virtual int32_t UnregisterDataChangeObserver(const std::string &bundleName, const std::string &sessionId) = 0; virtual int32_t OnAssetChanged(const std::string &bundleName, const std::string &sessionId, const std::string &deviceId, const ObjectStore::Asset &assetValue) = 0; virtual int32_t BindAssetStore(const std::string &bundleName, const std::string &sessionId, ObjectStore::Asset &asset, ObjectStore::AssetBindInfo &bindInfo) = 0; virtual int32_t DeleteSnapshot(const std::string &bundleName, const std::string &sessionId) = 0; virtual int32_t IsContinue(bool &result) = 0; }; } // namespace OHOS::DistributedObject #endif