/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
osx/MPMessagePack/XPC/MPXPCService.h
22 строки
657 B
Mike Maxim
installer upgrades
28 дек 2018, 21:54
28 дек 2018, 21:54
363e546
Код
Авторство
О чём код?
// // MPMessagePackXPC.h // MPMessagePack // // Created by Gabriel on 5/5/15. // Copyright (c) 2015 Gabriel Handford. All rights reserved. // #import <Foundation/Foundation.h> #import <ServiceManagement/ServiceManagement.h> #import <xpc/xpc.h> @interface MPXPCService : NSObject - (void)listen:(xpc_connection_t)service; - (void)listen:(xpc_connection_t)service codeRequirement:(NSString *)codeRequirement; // Subclasses should implement this - (void)handleRequestWithMethod:(NSString *)method params:(NSArray *)params messageId:(NSNumber *)messageId remote:(xpc_connection_t)remote completion:(void (^)(NSError *error, id value))completion; @end