We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f62923c commit 75b2e49Copy full SHA for 75b2e49
sources/net.sf.j2s.ajax/ajaxrpc/net/sf/j2s/ajax/ISimpleCometable.java
@@ -39,4 +39,11 @@ public interface ISimpleCometable {
39
*/
40
public boolean cometRun(final Runnable asyncDoneCallback);
41
42
+ /**
43
+ * Return whether send chunked encoding header before responding real data.
44
+ * @return Returning true, HTTP chunked encoding header will be sent and real data will be
45
+ * sent in later packet. Returning false, normal HTTP response will be sent after real data is ready.
46
+ */
47
+ public boolean supportsChunkedEncoding();
48
+
49
}
0 commit comments