//
/* NOTICE: All information contained herein is, and remains the property of Brightinsight Inc. or its customer. 
The intellectual and technical concepts contained herein are proprietary to Brightinsight Inc. or its customer and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret or copyright law.
Dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Brightinsight Inc. or its customer. Access to the source code contained herein is hereby forbidden to anyone except current Brightinsight Inc. employees, managers or contractors who have executed
Confidentiality and Non-disclosure agreements explicitly covering such access.
*/
/**
* System Name : BISDKCore
* Component ID : BISDKUploader
* Description : 
* Author: Vitor Cesco
* Copyright © : Brightinsight, Inc.
* -----------------------
* Revision Change
* -----------------------
* Author            Date             Version       Change-Description
*========================================================================================================
*/

import Foundation

protocol BISDKUploader {
    func save(payload: String, for type: BISDKUploaderRecordType, completion: @escaping (UUID) -> Void)
    
    func getRecord(with id: UUID, of type: BISDKUploaderRecordType) -> BISDKUploaderRecord?
    func getRecords(of type: BISDKUploaderRecordType) -> [BISDKUploaderRecord]
    func getRecords(with maxRetryLowerThan: Int, of type: BISDKUploaderRecordType) -> [BISDKUploaderRecord]
    
    func update(record: BISDKUploaderRecord)
    
    func delete(record: BISDKUploaderRecord)
    func deleteRecords(with maxRetryGreaterThan: Int, of type: BISDKUploaderRecordType)
    
    func descriptionForRecords(of type: BISDKUploaderRecordType, completion: @escaping (String) -> Void)
    
    func cleanStorage()
}
