1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-28 12:20:38 +03:00
vimr/NeoVimServer/NeoVimServer.h
2016-07-10 11:38:52 +02:00

22 lines
519 B
Objective-C

/**
* Tae Won Ha - http://taewon.de - @hataewon
* See LICENSE
*/
#import <Foundation/Foundation.h>
#import "NeoVimUiBridgeProtocol.h"
#import "NeoVimMsgIds.h"
@interface NeoVimServer : NSObject
- (instancetype)initWithUuid:(NSString *)uuid
localServerName:(NSString *)localServerName
remoteServerName:(NSString *)remoteServerName;
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid;
- (void)sendMessageWithId:(NeoVimServerMsgId)msgid data:(NSData *)data;
- (void)notifyReadiness;
@end