Skip to content
Merged
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
6 changes: 3 additions & 3 deletions platform/swift/source/shared/Queue.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extension DispatchQueue {
/// A root queue to be targeted by any queue that wants to perform basic (simple, short-lived) processing
/// tasks.
static let `default` = DispatchQueue(
label: "io.bitdrift.default",
label: "io.bitdrift.capture.default",
qos: .utility,
/// Per https://twitter.com/pedantcoder/status/1370080183051382786?s=20 it's good to always set
/// `autoreleaseFrequency` attribute so we do it here.
Expand All @@ -31,7 +31,7 @@ extension DispatchQueue {

/// A root queue to be used for heavy (long) operations such as IO operations
static let heavy = DispatchQueue(
label: "io.bitdrift.io",
label: "io.bitdrift.capture.io",
qos: .utility,
/// Per https://twitter.com/pedantcoder/status/1370080183051382786?s=20 it's good to always set
/// `autoreleaseFrequency` attribute so we do it here.
Expand All @@ -40,7 +40,7 @@ extension DispatchQueue {

/// A root queue to be used for network operations performed by the SDK itself.
static let network = DispatchQueue(
label: "io.bitdrift.network",
label: "io.bitdrift.capture.network",
qos: .utility,
autoreleaseFrequency: .workItem
)
Expand Down
Loading