EAEExxtractorConnectionErrorCode

Objective-C

enum EAEExxtractorConnectionErrorCode : NSUInteger {
    EAEExxtractorConnectionErrorCodeForUnreachableLAN = 1, // The LAN is unreachable. A scan found be performed.
    
    EAEExxtractorConnectionErrorCodeForUnavailableService = 2, // The scanned service is no longer available. A scan should be performed.
    EAEExxtractorConnectionErrorCodeForScanTimeout = 3, // The scan timeout was reached, and no services were found. A scan should be performed.
    EAEExxtractorConnectionErrorCodeForUnknownError = 4, // An unkown error ocurred. A scan should be performed.
    EAEExxtractorConnectionErrorCodeForInterruptedScan = 5, // The scan was interrupted. A scan should be performed.
    EAEExxtractorConnectionErrorCodeForNoConnectedService = 6, // An ExXtractor service connection has not been established yet. In order to do so a scan should be performed.
    EAEExxtractorConnectionErrorCodeForInvalidLocation = 7,
    EAEExxtractorConnectionErrorCodeForPrivateChannels = 8
}

Swift

struct EAEExxtractorConnectionErrorCode : Equatable, RawRepresentable

Undocumented