comparison runtime/doc/channel.txt @ 10319:169a62d5bcb9

commit https://github.com/vim/vim/commit/b4ada79aa7d0d1e5da3a659b1a203d7cae9f7f59 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 30 21:55:26 2016 +0100 Runtime file updates.
author Christian Brabandt <cb@256bit.org>
date Sun, 30 Oct 2016 22:00:04 +0100
parents 876fbdd84e52
children 368468ef35cf
comparison
equal deleted inserted replaced
10318:a0279bd5d079 10319:169a62d5bcb9
1 *channel.txt* For Vim version 8.0. Last change: 2016 Sep 29 1 *channel.txt* For Vim version 8.0. Last change: 2016 Oct 27
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
596 "close_cb": handler Callback for when the channel is closed. Same as 596 "close_cb": handler Callback for when the channel is closed. Same as
597 "close_cb" on |ch_open()|, see |close_cb|. 597 "close_cb" on |ch_open()|, see |close_cb|.
598 *job-exit_cb* 598 *job-exit_cb*
599 "exit_cb": handler Callback for when the job ends. The arguments are the 599 "exit_cb": handler Callback for when the job ends. The arguments are the
600 job and the exit status. 600 job and the exit status.
601 Vim checks about every 10 seconds for jobs that ended. 601 Vim checks up to 10 times per second for jobs that
602 The check also be triggered by calling |job_status()|, 602 ended. The check can also be triggered by calling
603 which may then invoke the exit_cb handler. 603 |job_status()|, which may then invoke the exit_cb
604 handler.
604 Note that data can be buffered, callbacks may still be 605 Note that data can be buffered, callbacks may still be
605 called after the process ends. 606 called after the process ends.
606 *job-timeout* 607 *job-timeout*
607 "timeout" The time to wait for a request when blocking, E.g. 608 "timeout" The time to wait for a request when blocking, E.g.
608 when using ch_evalexpr(). In milliseconds. The 609 when using ch_evalexpr(). In milliseconds. The