CBLFileStreamInstruction

Objective-C

enum CBLFileStreamInstruction : NSUInteger {}

Swift

enum FileStreamInstruction : UInt, @unchecked Sendable

File streaming instructions.

  • Inform CascableCore to continue the streaming operation.

    Declaration

    Objective-C

    CBLFileStreamInstructionContinue

    Swift

    case `continue` = 0
  • Inform CascableCore to cancel the streaming operation. This will trigger the operation’s completion handler.

    Declaration

    Objective-C

    CBLFileStreamInstructionCancel

    Swift

    case cancel = 1