/// Get the setting for the number of data packages that will be stored.
    /// <returns>-1 if this is called before this class has been initialized.</returns>
    public int GetRawDataStorageSize()
    {
        if (!IsBridgeInitialized)
        {
            return(-1);
        }

        return(_controllerPlugin.GetRawDataStorageSize());
    }