Source code for nvflare.apis.state_persistor

# Copyright (c) 2022, NVIDIA CORPORATION.  All rights reserved.
#
# 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.

from abc import ABC, abstractmethod

from .fl_snapshot import FLSnapshot, RunSnapshot


[docs]class StatePersistor(ABC):
[docs] @abstractmethod def save(self, snapshot: RunSnapshot) -> str: """Saves the snapshot of the FL state to storage. Args: snapshot: RunSnapshot object Returns: Storage location. """ pass
[docs] @abstractmethod def retrieve(self) -> FLSnapshot: """Loads the persisted FL components snapshot from the persisted location. Returns: An FLSnapshot """ pass
[docs] @abstractmethod def retrieve_run(self, job_id: str) -> RunSnapshot: """Loads the persisted RunSnapshot of a job_id from the persisted location. Args: job_id: job_id Returns: A RunSnapshot of the job_id """ pass
[docs] @abstractmethod def delete(self): """Deletes the FL component snapshot.""" pass
[docs] @abstractmethod def delete_run(self, job_id: str): """Deletes the RunSnapshot of a job_id""" pass