Start, stop, suspend and reload endpoints for all nodes belonging to a project. Fixes #1212.

This commit is contained in:
grossmj
2016-05-13 19:26:50 -06:00
parent 6cea6c9162
commit f1bc2f22c3
3 changed files with 112 additions and 0 deletions

View File

@ -247,6 +247,13 @@ class BaseNode:
raise NotImplementedError
def suspend(self):
"""
Suspends the node process.
"""
raise NotImplementedError
@asyncio.coroutine
def close(self):
"""