Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cancelling before continuation #382

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ extension Tasks {
}

public func didCancelled() {
continuation?.resume(throwing: LocationErrors.cancelled)
continuation = nil
}

Expand Down
5 changes: 5 additions & 0 deletions Sources/SwiftLocation/Support/LocationErrors.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ enum LocationErrors: LocalizedError {
/// Operation timeout.
case timeout

/// Cancelled before operation could complete.
case cancelled

var errorDescription: String? {
switch self {
case .plistNotConfigured:
Expand All @@ -55,6 +58,8 @@ enum LocationErrors: LocalizedError {
return "Not Authorized"
case .timeout:
return "Timeout"
case .cancelled:
return "Cancelled"
}
}

Expand Down