Skip to content

Commit 8009261

Browse files
authored
ios: add capture to queue names (#75)
1 parent b9dd94f commit 8009261

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

platform/swift/source/shared/Queue.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ extension DispatchQueue {
2222
/// A root queue to be targeted by any queue that wants to perform basic (simple, short-lived) processing
2323
/// tasks.
2424
static let `default` = DispatchQueue(
25-
label: "io.bitdrift.default",
25+
label: "io.bitdrift.capture.default",
2626
qos: .utility,
2727
/// Per https://twitter.com/pedantcoder/status/1370080183051382786?s=20 it's good to always set
2828
/// `autoreleaseFrequency` attribute so we do it here.
@@ -31,7 +31,7 @@ extension DispatchQueue {
3131

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

4141
/// A root queue to be used for network operations performed by the SDK itself.
4242
static let network = DispatchQueue(
43-
label: "io.bitdrift.network",
43+
label: "io.bitdrift.capture.network",
4444
qos: .utility,
4545
autoreleaseFrequency: .workItem
4646
)

0 commit comments

Comments
 (0)