@@ -56,7 +56,7 @@ public struct BatchSpanProcessor: SpanProcessor {
56
56
/// BatchWorker is a thread that batches multiple spans and calls the registered SpanExporter to export
57
57
/// the data.
58
58
/// The list of batched data is protected by a NSCondition which ensures full concurrency.
59
- private class BatchWorker : Thread {
59
+ private class BatchWorker {
60
60
let spanExporter : SpanExporter
61
61
let scheduleDelay : TimeInterval
62
62
let maxQueueSize : Int
@@ -67,7 +67,10 @@ private class BatchWorker: Thread {
67
67
private let cond = NSCondition ( )
68
68
var spanList = [ ReadableSpan] ( )
69
69
var queue : OperationQueue
70
-
70
+ // TODO: Workaround for the following compiler issue, and can be remove once resolved
71
+ // https://github.com/swiftlang/swift/issues/76752
72
+ private let _thread : Thread
73
+
71
74
init ( spanExporter: SpanExporter , scheduleDelay: TimeInterval , exportTimeout: TimeInterval , maxQueueSize: Int , maxExportBatchSize: Int , willExportCallback: ( ( inout [ SpanData ] ) -> Void ) ? ) {
72
75
self . spanExporter = spanExporter
73
76
self . scheduleDelay = scheduleDelay
@@ -79,8 +82,17 @@ private class BatchWorker: Thread {
79
82
queue = OperationQueue ( )
80
83
queue. name = " BatchWorker Queue "
81
84
queue. maxConcurrentOperationCount = 1
85
+ self . _thread = Thread ( )
82
86
}
83
-
87
+
88
+ func start( ) {
89
+ self . _thread. start ( )
90
+ }
91
+
92
+ func cancel( ) {
93
+ self . _thread. cancel ( )
94
+ }
95
+
84
96
func addSpan( span: ReadableSpan ) {
85
97
cond. lock ( )
86
98
defer { cond. unlock ( ) }
@@ -99,7 +111,7 @@ private class BatchWorker: Thread {
99
111
}
100
112
101
113
#if os(macOS) || os(iOS) || os(tvOS) || os(watchOS)
102
- override func main( ) {
114
+ func main( ) {
103
115
repeat {
104
116
autoreleasepool {
105
117
var spansCopy : [ ReadableSpan ]
@@ -117,7 +129,7 @@ private class BatchWorker: Thread {
117
129
} while true
118
130
}
119
131
#else
120
- override func main( ) {
132
+ func main( ) {
121
133
repeat {
122
134
var spansCopy : [ ReadableSpan ]
123
135
cond. lock ( )
0 commit comments