forked from p15670423/monkey
Island: Add IAgentRepository.reset()
This commit is contained in:
parent
1eefbdb2b1
commit
f00268c4a1
|
@ -39,3 +39,9 @@ class IAgentRepository(ABC):
|
||||||
:return: All `Agents` that are currently running
|
:return: All `Agents` that are currently running
|
||||||
:raises RetrievalError: If an error occurred while attempting to retrieve the `Agents`
|
:raises RetrievalError: If an error occurred while attempting to retrieve the `Agents`
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
@abstractmethod
|
||||||
|
def reset(self):
|
||||||
|
"""
|
||||||
|
Removes all data from the repository
|
||||||
|
"""
|
||||||
|
|
Loading…
Reference in New Issue