slac207 / cs207project

MIT License
0 stars 4 forks source link

P8- Create StorageManagerInterface #59

Closed cocochrane closed 7 years ago

cocochrane commented 7 years ago

Create a new StorageManagerInterface which has abstract methods:

  1. store(id:int/string, t:SizedContainerTimeSeriesInterface)->SizedContainerTimeSeriesInterface
  2. size(id:int/string)->int
  3. get(id:int/string)->SizedContainerTimeSeriesInterface

Notice that one implication of this interface is that we are also letting the storage manager handle the in-memory needs of our time series.

brennan-ae commented 7 years ago

Addressed in Pull Request #68