@class NSMutableDictionary, NSMutableSet, NSObject; @protocol OS_xpc_object, OS_dispatch_queue; @interface SPXPCServer : NSObject { double _idleTimerInterval; NSObject *_conn; NSMutableSet *_connections; NSMutableDictionary *_handlerMap; NSObject *_connectionsQueue; NSObject *_eventQueue; NSObject *_timerQueue; unsigned int _qos; BOOL hadConnection; BOOL _shutdown; } @property (copy, nonatomic) id /* block */ disconnectHandler; @property (copy, nonatomic) id /* block */ defaultMessageHandler; @property (copy, nonatomic) id /* block */ firstConnectionBlock; - (BOOL)shutdown; - (void)setHandlerForMessageName:(id)a0 handler:(id /* block */)a1; - (void)dealloc; - (id /* block */)_handlerForMessageName:(id)a0; - (id)_highAvailabilityQueue; - (id)initListenerWithServiceName:(id)a0 onQueue:(id)a1 qos:(unsigned int)a2; - (id)initListenerWithServiceName:(id)a0; - (void)startListening; - (void).cxx_destruct; - (void)_handleNewConnection:(id)a0 qos:(unsigned int)a1; @end