SequenceBuilder
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
Description
A builder forSequence
. Members
Returns: This builder to chain calls.
Parameters:
Return Type:
SequenceBuilder<T, U>
Returns: This builder to chain calls.
Parameters:
function: function(t as T) as void
Type: function(t as T) as void
- The function to run.
Return Type:
SequenceBuilder<T, U>
Returns: This builder to chain calls.
Parameters:
function: BiConsumer<T, SequenceContext<T, U>>
Type: BiConsumer<T, SequenceContext<T, U>>
- The function to run.
Return Type:
SequenceBuilder<T, U>
Returns: This builder to chain calls.
Parameters:
ticks: long
Type: long
- The amount of ticks to wait.
Return Type:
SequenceBuilder<T, U>
Returns: This builder to chain calls.
Parameters:
condition: function(t as T) as bool
Type: function(t as T) as bool
- The condition to wait for.
Return Type:
SequenceBuilder<T, U>
Returns: This builder to chain calls.
Parameters:
condition: BiPredicate<T, SequenceContext<T, U>>
Type: BiPredicate<T, SequenceContext<T, U>>
- The condition to wait for.
Return Type:
SequenceBuilder<T, U>
This method is an alias for run
Returns: This builder to chain calls.
Parameters:
function: function(t as T) as void
Type: function(t as T) as void
- The function to run.
Return Type:
SequenceBuilder<T, U>
This method is an alias for run
Returns: This builder to chain calls.
Parameters:
function: BiConsumer<T, SequenceContext<T, U>>
Type: BiConsumer<T, SequenceContext<T, U>>
- The function to run.
Return Type:
SequenceBuilder<T, U>