Lucee Tag Reference

<cfflush>

Flushes currently available data to the client.

Body

This tag can't have a body.

Example

<cfflush
	[interval=number]
	[throwonerror=boolean]>
This tag is also supported within cfscript
<cfscript>
	flush
		[interval=number]
		[throwonerror=boolean];
</cfscript>

Attributes

The attributes for this tag are fixed. Except for the following attributes no other attributes are allowed.
Name Type Required Description
interval number No Flush the output each time at least the specified number of bytes become available. HTML
headers, and any data that is already available when you make this call, are not included in
the count. 
throwonerror boolean No If set to false, any exceptions thrown by the servlet engine, such as those resulting from a client disconnection, will be suppressed.