Show:

An object containing all the available sub-types constructions of the managed by this class.

Item Index

Methods

basic

() ProAct.Stream protected

Constructs a simple ProAct.Stream

   return new ProAct.Stream();
 

Returns:

ProAct.Stream:

An isntance of ProAct.Stream.

debouncing

(
  • args
)
ProAct.DebouncingStream protected

Constructs a ProAct.DebouncingStream

   return new ProAct.DebouncingStream(delay);
 

Parameters:

  • args Array

    An array of arguments - the first element of which is the delay of the stream to construct.

delayed

(
  • args
)
ProAct.DelayedStream protected

Constructs a ProAct.DelayedStream

   return new ProAct.DelayedStream(delay);
 

Parameters:

  • args Array

    An array of arguments - the first element of which is the delay of the stream to construct.

Returns:

size

(
  • args
)
ProAct.SizeBufferedStream protected

Constructs a ProAct.SizeBufferedStream

   return new ProAct.SizeBufferedStream(size);
 

Parameters:

  • args Array

    An array of arguments - the first element of which is the size of the stream to construct.

throttling

(
  • args
)
ProAct.ThrottlingStream protected

Constructs a ProAct.ThrottlingStream

   return new ProAct.ThrottlingStream(delay);
 

Parameters:

  • args Array

    An array of arguments - the first element of which is the delay of the stream to construct.