2016-07-09 15:04:09 +03:00
|
|
|
/**
|
|
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
|
|
* See LICENSE
|
|
|
|
*/
|
|
|
|
|
2016-10-22 18:25:43 +03:00
|
|
|
@import Foundation;
|
|
|
|
|
2016-07-09 23:52:59 +03:00
|
|
|
#import "NeoVimMsgIds.h"
|
2016-07-09 15:04:09 +03:00
|
|
|
|
|
|
|
|
|
|
|
@interface NeoVimServer : NSObject
|
|
|
|
|
2016-07-10 15:43:26 +03:00
|
|
|
- (instancetype)initWithLocalServerName:(NSString *)localServerName remoteServerName:(NSString *)remoteServerName;
|
2016-07-09 15:04:09 +03:00
|
|
|
|
|
|
|
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid;
|
|
|
|
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid data:(NSData *)data;
|
|
|
|
- (void)notifyReadiness;
|
|
|
|
|
|
|
|
@end
|