comparison src/org/eclipse/jetty/io/AsyncEndPoint.java @ 945:89fe80dfab2c

remove asyncDispatch()
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 11 Oct 2016 20:53:06 -0600
parents b77d631b9e28
children 669769bcdf5c
comparison
equal deleted inserted replaced
944:1d24b6e422fa 945:89fe80dfab2c
25 /** 25 /**
26 * Dispatch the endpoint if it is not already dispatched 26 * Dispatch the endpoint if it is not already dispatched
27 * 27 *
28 */ 28 */
29 public void dispatch(); 29 public void dispatch();
30
31 /* ------------------------------------------------------------ */
32 /**
33 * Dispatch the endpoint. If it is already dispatched, schedule a redispatch
34 *
35 */
36 public void asyncDispatch();
37 30
38 /* ------------------------------------------------------------ */ 31 /* ------------------------------------------------------------ */
39 /** Schedule a write dispatch. 32 /** Schedule a write dispatch.
40 * Set the endpoint to not be writable and schedule a dispatch when 33 * Set the endpoint to not be writable and schedule a dispatch when
41 * it becomes writable. 34 * it becomes writable.