Data storage plugins
Overview
note
This extension point allows to define a new file storage system.
NOTE : There is two types of storage system in REGARDS :
- Online : Files are directly accessible. (Synchronous retrieval)
- Nearline : Files are on a long term archive system and needs times to be extracted. (Asynchronous retrieval)
REGARDS provides many implementation of this extension point :
- LocalDataStorage : Local disk storage system.
Interfaces
- IStorageLocation : Main interface
- IOnlineStorageLocation : Interface for
Online
systems. - INearlineStorageLocation : Interface for
Nearline
systems.
Implementation
To learn more about how to create your own plugin see Plugins