We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5398152 commit 2130b32Copy full SHA for 2130b32
src/darwin/Framework/CHIP/MTRDevice_XPC.mm
@@ -85,11 +85,12 @@
85
@implementation MTRDevice_XPC
86
87
@synthesize _internalState;
88
+@synthesize queue = _queue;
89
90
- (instancetype)initWithNodeID:(NSNumber *)nodeID controller:(MTRDeviceController_XPC *)controller
91
{
92
if (self = [super initForSubclassesWithNodeID:nodeID controller:controller]) {
- // Nothing else to do, all set.
93
+ _queue = dispatch_queue_create("org.csa-iot.matter.framework.devicexpc.workqueue", DISPATCH_QUEUE_SERIAL_WITH_AUTORELEASE_POOL);
94
}
95
96
return self;
0 commit comments