StateReporter describes methods of state reporting.
| 38 | |
| 39 | // StateReporter describes methods of state reporting. |
| 40 | type StateReporter interface { |
| 41 | GetSessionState(branch, name string) (*resources.SessionState, error) |
| 42 | GetBatchSessionState(requests []resources.SessionStateRequest) (map[string]resources.SessionState, error) |
| 43 | GetFilesystemState() (models.FileSystem, error) |
| 44 | } |
| 45 | |
| 46 | // Snapshotter describes methods of snapshot management. |
| 47 | type Snapshotter interface { |
no outgoing calls
no test coverage detected