StartReadingOutput() public method

Start reading asynchronously from the output and error streams
public StartReadingOutput ( ) : void
return void
Ejemplo n.º 1
0
 /// <summary>
 /// Initializes the Client
 /// </summary>
 /// <param name="path">Path to Neovim.exe</param>
 public NeovimClient(string path)
 {
     _io = new MsgPackIO(path, @"--embed --headless");
     _io.NotificationReceived += OnNotificationReceived;
     _io.StartReadingOutput();
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes the Client
 /// </summary>
 /// <param name="path">Path to Neovim.exe</param>
 public NeovimClient(string path)
 {
     _io = new MsgPackIO(path, @"--embed --headless");
     _io.NotificationReceived += OnNotificationReceived;
     _io.StartReadingOutput();
 }