Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.06 KB

stream-methods.md

File metadata and controls

44 lines (34 loc) · 1.06 KB

Stream Methods

{% hint style="info" %} The stream methods are only available for the LocalProvider currently. {% endhint %}

stream

Returns a Java stream of the file using non-blocking IO classes. The stream will represent every line in the file so you can navigate through it.

/**
 * @path The path to read all the files with
 *
 * @return Stream object: See https://apidocs.ortussolutions.com/coldbox-modules/cbstreams/1.1.0/index.html
 */
function stream( required path );

// Example
disk.stream( expandPath( "datadump.txt" ) );

streamOf

Create a Java stream of the incoming array of files or directories.

/**
 * @target The target array of files/directories to generate a stream of
 *
 * @return Stream object: See https://apidocs.ortussolutions.com/coldbox-modules/cbstreams/1.1.0/index.html
 */
function streamOf( required array target ){
	
// Example
disk.streamOf( disk.files( "my.path" ) )
	.filter( function( item ){
		return item.startsWith( "a" );
	} )
	.forEach( function( item ){
		writedump( item );	
	} );