You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-ios/SessionMessagingKit/Utilities/AttachmentStream.swift

13 lines
353 B
Swift

@objc(SNAttachmentStream)
public protocol AttachmentStream {
@objc var encryptionKey: Data { get set }
@objc var digest: Data { get set }
@objc var serverId: UInt64 { get set }
@objc var isUploaded: Bool { get set }
@objc var downloadURL: String { get set }
@objc func readDataFromFile() throws -> Data
@objc func save()
}